Uses of Class
org.apache.lucene.document.Field.Store

Packages that use Field.Store
org.apache.lucene.document The logical representation of a Document for indexing and searching. 
 

Uses of Field.Store in org.apache.lucene.document
 

Methods in org.apache.lucene.document that return Field.Store
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
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
DoubleField(String name, double value, Field.Store stored)
          Creates a stored or un-stored DoubleField with the provided value and default precisionStep NumericUtils.PRECISION_STEP_DEFAULT (4).
Field(String name, String value, Field.Store store, Field.Index index)
          Deprecated. Use StringField, TextField instead.
Field(String name, String value, Field.Store store, Field.Index index, Field.TermVector termVector)
          Deprecated. Use StringField, TextField instead.
FloatField(String name, float value, Field.Store stored)
          Creates a stored or un-stored FloatField with the provided value and default precisionStep 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 default precisionStep 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 default precisionStep 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.
 



Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.