public static enum ActiveChangeNotification.ActiveChangeType extends Enum<ActiveChangeNotification.ActiveChangeType>
Enum Constant and Description |
---|
Insert
This value represents an insertion into the collection.
|
Remove
This value represents a removal from the collection.
|
Update
This value represents an update to the collection.
|
Modifier and Type | Method and Description |
---|---|
static ActiveChangeNotification.ActiveChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActiveChangeNotification.ActiveChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActiveChangeNotification.ActiveChangeType Insert
public static final ActiveChangeNotification.ActiveChangeType Update
public static final ActiveChangeNotification.ActiveChangeType Remove
public static ActiveChangeNotification.ActiveChangeType[] values()
for (ActiveChangeNotification.ActiveChangeType c : ActiveChangeNotification.ActiveChangeType.values()) System.out.println(c);
public static ActiveChangeNotification.ActiveChangeType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2013-2015 JBoss by Red Hat. All Rights Reserved.