|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Field.TermVector> org.apache.lucene.document.Field.TermVector
public static enum Field.TermVector
Specifies whether and how a field should have term vectors.
Enum Constant Summary | |
---|---|
NO
Do not store term vectors. |
|
WITH_OFFSETS
Store the term vector + Token offset information |
|
WITH_POSITIONS
Store the term vector + token position information |
|
WITH_POSITIONS_OFFSETS
Store the term vector + Token position and offset information |
|
YES
Store the term vectors of each document. |
Method Summary | |
---|---|
abstract boolean |
isStored()
|
static Field.TermVector |
toTermVector(boolean stored,
boolean withOffsets,
boolean withPositions)
Get the best representation of a TermVector given the flags. |
static Field.TermVector |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Field.TermVector[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
abstract boolean |
withOffsets()
|
abstract boolean |
withPositions()
|
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Field.TermVector NO
public static final Field.TermVector YES
public static final Field.TermVector WITH_POSITIONS
YES
public static final Field.TermVector WITH_OFFSETS
YES
public static final Field.TermVector WITH_POSITIONS_OFFSETS
YES
,
WITH_POSITIONS
,
WITH_OFFSETS
Method Detail |
---|
public static final Field.TermVector[] values()
for(Field.TermVector c : Field.TermVector.values()) System.out.println(c);
public static Field.TermVector valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic static Field.TermVector toTermVector(boolean stored, boolean withOffsets, boolean withPositions)
public abstract boolean isStored()
public abstract boolean withPositions()
public abstract boolean withOffsets()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |