public static enum Bindable.BindableType extends Enum<Bindable.BindableType>
| Enum Constant and Description | 
|---|
| ENTITY_TYPEEntity type | 
| PLURAL_ATTRIBUTEMulti-valued attribute type | 
| SINGULAR_ATTRIBUTESingle-valued attribute type | 
| Modifier and Type | Method and Description | 
|---|---|
| static Bindable.BindableType | valueOf(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 SINGULAR_ATTRIBUTE
public static final Bindable.BindableType PLURAL_ATTRIBUTE
public static final Bindable.BindableType ENTITY_TYPE
public static Bindable.BindableType[] values()
for (Bindable.BindableType c : Bindable.BindableType.values()) System.out.println(c);
public static Bindable.BindableType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All Rights Reserved.