|
|||||||||
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.FieldType> com.google.appengine.api.search.Field.FieldType
public static enum Field.FieldType
The type of the field value.
Enum Constant Summary | |
---|---|
ATOM
An indivisible text content. |
|
DATE
A Date with no time component. |
|
HTML
HTML content. |
|
NUMBER
Double precision floating-point number. |
|
TEXT
Text content. |
Method Summary | |
---|---|
static Field.FieldType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Field.FieldType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Field.FieldType TEXT
public static final Field.FieldType HTML
public static final Field.FieldType ATOM
public static final Field.FieldType DATE
public static final Field.FieldType NUMBER
Method Detail |
---|
public static Field.FieldType[] values()
for (Field.FieldType c : Field.FieldType.values()) System.out.println(c);
public static Field.FieldType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |