return ((LuceneField) field).getField();
}
org.apache.lucene.document.Field.Store store = org.apache.lucene.document.Field.Store.YES;
org.apache.lucene.document.Field.Index index = org.apache.lucene.document.Field.Index.UN_TOKENIZED;
StoreOption storeOption = field.getStoreOption();
IndexOption indexOption = field.getIndexOption();
if (storeOption == StoreOption.YES) {
store = org.apache.lucene.document.Field.Store.YES;
} else if (storeOption == StoreOption.NO) {
store = org.apache.lucene.document.Field.Store.NO;
} else if (storeOption == StoreOption.COMPRESS) {