public static enum Field.FieldType extends java.lang.Enum<Field.FieldType>
| Enum Constant and Description |
|---|
bool |
fixed |
hidden |
jid_single |
list_multi |
list_single |
text_multi |
text_private |
text_single |
| Modifier and Type | Method and Description |
|---|---|
static Field.FieldType |
getFieldTypeByName(java.lang.String name) |
java.lang.String |
toString() |
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.
|
public static final Field.FieldType bool
public static final Field.FieldType fixed
public static final Field.FieldType hidden
public static final Field.FieldType jid_single
public static final Field.FieldType list_multi
public static final Field.FieldType list_single
public static final Field.FieldType text_multi
public static final Field.FieldType text_private
public static final Field.FieldType text_single
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 namejava.lang.NullPointerException - if the argument is nullpublic static Field.FieldType getFieldTypeByName(java.lang.String name)
public java.lang.String toString()
toString in class java.lang.Enum<Field.FieldType>