public static enum DataStructureEvent.DataChangeType extends java.lang.Enum<DataStructureEvent.DataChangeType>
Enum Constant and Description |
---|
DATA_ADDED
Data added to the data structure
|
DATA_CHANGED
Data elements within the data structure have changed
|
DATA_REMOVED
Data removed from the data structure
|
Modifier and Type | Method and Description |
---|---|
static DataStructureEvent.DataChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataStructureEvent.DataChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataStructureEvent.DataChangeType DATA_ADDED
public static final DataStructureEvent.DataChangeType DATA_REMOVED
public static final DataStructureEvent.DataChangeType DATA_CHANGED
public static DataStructureEvent.DataChangeType[] values()
for (DataStructureEvent.DataChangeType c : DataStructureEvent.DataChangeType.values()) System.out.println(c);
public static DataStructureEvent.DataChangeType 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