java.io.Serializable
, java.lang.Comparable<Bindable.BindableType>
public static enum Bindable.BindableType extends java.lang.Enum<Bindable.BindableType>
Enum Constant | Description |
---|---|
ENTITY_TYPE |
Entity type
|
PLURAL_ATTRIBUTE |
Multi-valued attribute type
|
SINGULAR_ATTRIBUTE |
Single-valued attribute type
|
Modifier and Type | Method | 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 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(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 nullCopyright © 2018. All rights reserved.