public static enum CollectionChangeEvent.Kind extends java.lang.Enum<CollectionChangeEvent.Kind>
| Enum Constant and Description |
|---|
ADD |
CLEAR |
PAGE_CHANGE |
REMOVE |
REPLACE |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static CollectionChangeEvent.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CollectionChangeEvent.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollectionChangeEvent.Kind ADD
public static final CollectionChangeEvent.Kind REMOVE
public static final CollectionChangeEvent.Kind REPLACE
public static final CollectionChangeEvent.Kind UPDATE
public static final CollectionChangeEvent.Kind PAGE_CHANGE
public static final CollectionChangeEvent.Kind CLEAR
public static CollectionChangeEvent.Kind[] values()
for (CollectionChangeEvent.Kind c : CollectionChangeEvent.Kind.values()) System.out.println(c);
public static CollectionChangeEvent.Kind 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