Uses of Enum Class
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 class with the specified name.static Field.Store[]Field.Store.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.apache.lucene.document with parameters of type Field.StoreModifierConstructorDescriptionStringField(String name, String value, Field.Store stored) Creates a new textual StringField, indexing the provided String value as a single token.StringField(String name, BytesRef value, Field.Store stored) Creates a new binary StringField, indexing the provided binary (BytesRef) value as a single token.TextField(String name, String value, Field.Store store) Creates a new TextField with String value.