public static enum Bindable.BindableType extends Enum<Bindable.BindableType>
Enum Constant and Description |
---|
ENTITY_TYPE
Entity type
|
PLURAL_ATTRIBUTE
Multi-valued attribute type
|
SINGULAR_ATTRIBUTE
Single-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 © 1996-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.