Uses of Class
org.apache.lucene.document.Field.Store
-
Packages that use Field.Store Package Description org.apache.lucene.benchmark.byTask.feeds Sources for benchmark inputs: documents and queries.org.apache.lucene.document The logical representation of aDocumentfor indexing and searching.org.apache.lucene.util Some utility classes. -
-
Uses of Field.Store in org.apache.lucene.benchmark.byTask.feeds
Fields in org.apache.lucene.benchmark.byTask.feeds declared as Field.Store Modifier and Type Field Description protected Field.StoreDocMaker. bodyStoreValprotected Field.StoreDocMaker. storeVal -
Uses of Field.Store in org.apache.lucene.document
Methods in org.apache.lucene.document that return Field.Store Modifier and Type Method Description static Field.StoreField.Store. valueOf(String name)Returns the enum constant of this type with the specified name.static Field.Store[]Field.Store. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.lucene.document with parameters of type Field.Store Constructor Description AbstractField(String name, Field.Store store, Field.Index index, Field.TermVector termVector)Field(String name, boolean internName, String value, Field.Store store, Field.Index index, Field.TermVector termVector)Create a field by specifying its name, value and how it will be saved in the index.Field(String name, byte[] value, int offset, int length, Field.Store store)Deprecated.UseinsteadField(String name, byte[] value, Field.Store store)Deprecated.UseinsteadField(String name, String value, Field.Store store, Field.Index index)Create a field by specifying its name, value and how it will be saved in the index.Field(String name, String value, Field.Store store, Field.Index index, Field.TermVector termVector)Create a field by specifying its name, value and how it will be saved in the index.NumericField(String name, int precisionStep, Field.Store store, boolean index)Creates a field for numeric values with the specifiedprecisionStep.NumericField(String name, Field.Store store, boolean index)Creates a field for numeric values using the defaultprecisionStepNumericUtils.PRECISION_STEP_DEFAULT(4). -
Uses of Field.Store in org.apache.lucene.util
Methods in org.apache.lucene.util with parameters of type Field.Store Modifier and Type Method Description static FieldLuceneTestCase. newField(String name, String value, Field.Store store, Field.Index index)Returns a new field instance.static FieldLuceneTestCase. newField(String name, String value, Field.Store store, Field.Index index, Field.TermVector tv)Returns a new Field instance.static FieldLuceneTestCase. newField(Random random, String name, String value, Field.Store store, Field.Index index)Returns a new field instance, using the specified random.static FieldLuceneTestCase. newField(Random random, String name, String value, Field.Store store, Field.Index index, Field.TermVector tv)Returns a new field instance, using the specified random.
-