public static enum BeanPathAdapter.FieldPathValueType extends java.lang.Enum<BeanPathAdapter.FieldPathValueType>
BeanPathAdapter.FieldPathValue types used for FieldPathValueProperty
changes| Enum Constant and Description |
|---|
BEAN_CHANGE
Root bean change (from a
BeanPathAdapter.setBean(Object)
operation) |
CONTENT_ITEM_ADD
Item added via content binding
|
CONTENT_ITEM_ADD_SELECT
Selection item added via content binding
|
CONTENT_ITEM_REMOVE
Item removed via content binding
|
CONTENT_ITEM_REMOVE_SELECT
Selection item removed via content binding
|
FIELD_CHANGE
General field binding change (not from a
BeanPathAdapter.setBean(Object) operation) |
| Modifier and Type | Method and Description |
|---|---|
static BeanPathAdapter.FieldPathValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BeanPathAdapter.FieldPathValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanPathAdapter.FieldPathValueType BEAN_CHANGE
BeanPathAdapter.setBean(Object)
operation)public static final BeanPathAdapter.FieldPathValueType FIELD_CHANGE
BeanPathAdapter.setBean(Object) operation)public static final BeanPathAdapter.FieldPathValueType CONTENT_ITEM_ADD
public static final BeanPathAdapter.FieldPathValueType CONTENT_ITEM_REMOVE
public static final BeanPathAdapter.FieldPathValueType CONTENT_ITEM_ADD_SELECT
public static final BeanPathAdapter.FieldPathValueType CONTENT_ITEM_REMOVE_SELECT
public static BeanPathAdapter.FieldPathValueType[] values()
for (BeanPathAdapter.FieldPathValueType c : BeanPathAdapter.FieldPathValueType.values()) System.out.println(c);
public static BeanPathAdapter.FieldPathValueType 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