static enum ObservableProperty.Type extends java.lang.Enum<ObservableProperty.Type>
Enum Constant and Description |
---|
MULTIPLE_ATTRIBUTE |
MULTIPLE_REFERENCE |
SINGLE_ATTRIBUTE |
SINGLE_REFERENCE |
Modifier and Type | Field and Description |
---|---|
private boolean |
multiple |
private boolean |
node |
Modifier and Type | Method and Description |
---|---|
static ObservableProperty.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObservableProperty.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObservableProperty.Type SINGLE_ATTRIBUTE
public static final ObservableProperty.Type SINGLE_REFERENCE
public static final ObservableProperty.Type MULTIPLE_ATTRIBUTE
public static final ObservableProperty.Type MULTIPLE_REFERENCE
public static ObservableProperty.Type[] values()
for (ObservableProperty.Type c : ObservableProperty.Type.values()) System.out.println(c);
public static ObservableProperty.Type 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