public static enum Bindable.BindableType extends java.lang.Enum<Bindable.BindableType>
Enum Constant and Description |
---|
ENTITY_TYPE |
PLURAL_ATTRIBUTE |
SINGULAR_ATTRIBUTE |
Modifier and Type | Method and Description |
---|---|
static Bindable.BindableType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Bindable.BindableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bindable.BindableType ENTITY_TYPE
public static final Bindable.BindableType PLURAL_ATTRIBUTE
public static final Bindable.BindableType SINGULAR_ATTRIBUTE
public static Bindable.BindableType[] values()
for (Bindable.BindableType c : Bindable.BindableType.values()) System.out.println(c);
public static Bindable.BindableType 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 null