Uses of Class
org.apache.lucene.document.Field.Store
-
Packages that use Field.Store Package Description org.apache.lucene.document The logical representation of aDocument
for indexing and searching. -
-
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.Store
Field.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.Methods in org.apache.lucene.document with parameters of type Field.Store Modifier and Type Method Description static FieldType
Field. translateFieldType(Field.Store store, Field.Index index, Field.TermVector termVector)
Deprecated.This is here only to ease transition from the pre-4.0 APIs.Constructors in org.apache.lucene.document with parameters of type Field.Store Constructor Description DoubleField(String name, double value, Field.Store stored)
Creates a stored or un-stored DoubleField with the provided value and defaultprecisionStep
NumericUtils.PRECISION_STEP_DEFAULT
(4).Field(String name, String value, Field.Store store, Field.Index index)
Deprecated.UseStringField
,TextField
instead.Field(String name, String value, Field.Store store, Field.Index index, Field.TermVector termVector)
Deprecated.UseStringField
,TextField
instead.FloatField(String name, float value, Field.Store stored)
Creates a stored or un-stored FloatField with the provided value and defaultprecisionStep
NumericUtils.PRECISION_STEP_DEFAULT
(4).IntField(String name, int value, Field.Store stored)
Creates a stored or un-stored IntField with the provided value and defaultprecisionStep
NumericUtils.PRECISION_STEP_DEFAULT
(4).LongField(String name, long value, Field.Store stored)
Creates a stored or un-stored LongField with the provided value and defaultprecisionStep
NumericUtils.PRECISION_STEP_DEFAULT
(4).StringField(String name, String value, Field.Store stored)
Creates a new StringField.TextField(String name, String value, Field.Store store)
Creates a new TextField with String value.
-