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