|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<TermVector>
org.compass.annotations.TermVector
public enum TermVector
Specifies whether and how a meta-data property should have term vectors.
| Enum Constant Summary | |
|---|---|
NA
Not applicable. |
|
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 | |
|---|---|
static TermVector |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TermVector[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| 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 TermVector NA
public static final TermVector NO
public static final TermVector YES
public static final TermVector WITH_POSITIONS
YESpublic static final TermVector WITH_OFFSETS
YESpublic static final TermVector WITH_POSITIONS_OFFSETS
YES,
WITH_POSITIONS,
WITH_OFFSETS| Method Detail |
|---|
public static final TermVector[] values()
for(TermVector c : TermVector.values())
System.out.println(c);
public static 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 name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||