public enum Change extends Enum<Change>
| Modifier and Type | Method and Description |
|---|---|
static Change |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Change[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Change ADDED
public static final Change MODIFIED
public static final Change DELETED
public static final Change REPLACED
public static Change[] values()
for (Change c : Change.values()) System.out.println(c);
public static Change 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 © 2012. All Rights Reserved.