|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Binding.ValueState>
javax.beans.binding.Binding.ValueState
public static enum Binding.ValueState
Enumeration of the possible states the source and target may be in.
| Enum Constant Summary | |
|---|---|
INCOMPLETE_PATH
Enumeration value indicating not all elements of the path are reachable. |
|
INVALID
Enumeration value indicating the value is invalid. |
|
UNCOMMITTED
Enumeration value indicating the value has not been committed to the the other object. |
|
VALID
Enumeration value indicating the value is valid and in sync with the other object. |
|
| Method Summary | |
|---|---|
static Binding.ValueState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Binding.ValueState[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Binding.ValueState INCOMPLETE_PATH
"manager.firstName" and manager property is null, then the
"firstName" property can not be evaluated and the
source state is set to INCOMPLETE_PATH.
public static final Binding.ValueState UNCOMMITTED
READ_ONCE and the source value
changes, then the source value state is set to UNCOMMITTED.
public static final Binding.ValueState INVALID
BindingValidator indicates an invalid
value should be left in the target, or if the BindingConverter
throws a ClassCastException or
IllegalArgumentException on conversion.
public static final Binding.ValueState VALID
| Method Detail |
|---|
public static final Binding.ValueState[] values()
for(Binding.ValueState c : Binding.ValueState.values())
System.out.println(c);
public static Binding.ValueState 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 name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||