Package org.apache.solr.common.luke
Enum FieldFlag
- java.lang.Object
- 
- java.lang.Enum<FieldFlag>
- 
- org.apache.solr.common.luke.FieldFlag
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<FieldFlag>
 
 public enum FieldFlag extends Enum<FieldFlag> - Since:
- solr 1.3
 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description chargetAbbreviation()StringgetDisplay()static FieldFlaggetFlag(char abbrev)StringtoString()static FieldFlagvalueOf(String name)Returns the enum constant of this type with the specified name.static FieldFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
INDEXEDpublic static final FieldFlag INDEXED 
 - 
TOKENIZEDpublic static final FieldFlag TOKENIZED 
 - 
STOREDpublic static final FieldFlag STORED 
 - 
DOC_VALUESpublic static final FieldFlag DOC_VALUES 
 - 
UNINVERTIBLEpublic static final FieldFlag UNINVERTIBLE 
 - 
MULTI_VALUEDpublic static final FieldFlag MULTI_VALUED 
 - 
TERM_VECTOR_STOREDpublic static final FieldFlag TERM_VECTOR_STORED 
 - 
TERM_VECTOR_OFFSETpublic static final FieldFlag TERM_VECTOR_OFFSET 
 - 
TERM_VECTOR_POSITIONpublic static final FieldFlag TERM_VECTOR_POSITION 
 - 
TERM_VECTOR_PAYLOADSpublic static final FieldFlag TERM_VECTOR_PAYLOADS 
 - 
OMIT_NORMSpublic static final FieldFlag OMIT_NORMS 
 - 
OMIT_TFpublic static final FieldFlag OMIT_TF 
 - 
OMIT_POSITIONSpublic static final FieldFlag OMIT_POSITIONS 
 - 
STORE_OFFSETS_WITH_POSITIONSpublic static final FieldFlag STORE_OFFSETS_WITH_POSITIONS 
 - 
LAZYpublic static final FieldFlag LAZY 
 - 
BINARYpublic static final FieldFlag BINARY 
 - 
SORT_MISSING_FIRSTpublic static final FieldFlag SORT_MISSING_FIRST 
 - 
SORT_MISSING_LASTpublic static final FieldFlag SORT_MISSING_LAST 
 
- 
 - 
Method Detail- 
valuespublic static FieldFlag[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FieldFlag c : FieldFlag.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FieldFlag valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getFlagpublic static FieldFlag getFlag(char abbrev) 
 - 
getAbbreviationpublic char getAbbreviation() 
 - 
getDisplaypublic String getDisplay() 
 
- 
 
-