net.sf.sido.array
Enum ArrayEventType
java.lang.Object
java.lang.Enum<ArrayEventType>
net.sf.sido.array.ArrayEventType
- All Implemented Interfaces:
- Serializable, Comparable<ArrayEventType>
public enum ArrayEventType
- extends Enum<ArrayEventType>
|
Method Summary |
static ArrayEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ArrayEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
ADDED
public static final ArrayEventType ADDED
UPDATED
public static final ArrayEventType UPDATED
DELETED
public static final ArrayEventType DELETED
values
public static ArrayEventType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ArrayEventType c : ArrayEventType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ArrayEventType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2011. All Rights Reserved.