Uses of Enum
org.apache.lucene.document.Field.Store
Packages that use Field.Store
-
Uses of Field.Store in org.apache.lucene.document
Methods in org.apache.lucene.document that return Field.StoreModifier and TypeMethodDescriptionstatic Field.StoreReturns 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.StoreModifier and TypeMethodDescriptionstatic final FieldTypeField.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.StoreModifierConstructorDescriptionDoubleField(String name, double value, Field.Store stored) Creates a stored or un-stored DoubleField with the provided value and defaultprecisionStepNumericUtils.PRECISION_STEP_DEFAULT(4).Field(String name, String value, Field.Store store, Field.Index index) Deprecated.UseStringField,TextFieldinstead.Field(String name, String value, Field.Store store, Field.Index index, Field.TermVector termVector) Deprecated.UseStringField,TextFieldinstead.FloatField(String name, float value, Field.Store stored) Creates a stored or un-stored FloatField with the provided value and defaultprecisionStepNumericUtils.PRECISION_STEP_DEFAULT(4).IntField(String name, int value, Field.Store stored) Creates a stored or un-stored IntField with the provided value and defaultprecisionStepNumericUtils.PRECISION_STEP_DEFAULT(4).LongField(String name, long value, Field.Store stored) Creates a stored or un-stored LongField with the provided value and defaultprecisionStepNumericUtils.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.