|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Index>
org.compass.annotations.Index
public enum Index
Specifies whether and how a meta-data proeprty should be indexed.
| Enum Constant Summary | |
|---|---|
ANALYZED
Index the property's value so it can be searched. |
|
NA
Lest Compass derive the index. |
|
NO
Do not index the property value. |
|
NOT_ANALYZED
Index the property's value without using an Analyzer, so it can be searched. |
|
TOKENIZED
Deprecated. use ANALYZED instead. |
|
UN_TOKENIZED
Deprecated. use NOT_ANALYZED |
|
| Method Summary | |
|---|---|
static Index |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Index[] |
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 Index NA
public static final Index NO
stored.
public static final Index ANALYZED
public static final Index TOKENIZED
ANALYZED instead.public static final Index NOT_ANALYZED
public static final Index UN_TOKENIZED
NOT_ANALYZED| Method Detail |
|---|
public static final Index[] values()
for(Index c : Index.values())
System.out.println(c);
public static Index 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 | |||||||||