public static enum ContentChangeEvent.ContentChangeType extends Enum<ContentChangeEvent.ContentChangeType>
Enum Constant and Description |
---|
CREATE |
DELETE |
DUPLICATE |
PENDING |
PUBLISH |
RENAME |
SORT |
UNKNOWN |
UPDATE |
Modifier and Type | Method and Description |
---|---|
String |
id() |
static ContentChangeEvent.ContentChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContentChangeEvent.ContentChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentChangeEvent.ContentChangeType UNKNOWN
public static final ContentChangeEvent.ContentChangeType PUBLISH
public static final ContentChangeEvent.ContentChangeType DUPLICATE
public static final ContentChangeEvent.ContentChangeType CREATE
public static final ContentChangeEvent.ContentChangeType UPDATE
public static final ContentChangeEvent.ContentChangeType DELETE
public static final ContentChangeEvent.ContentChangeType PENDING
public static final ContentChangeEvent.ContentChangeType RENAME
public static final ContentChangeEvent.ContentChangeType SORT
public static ContentChangeEvent.ContentChangeType[] values()
for (ContentChangeEvent.ContentChangeType c : ContentChangeEvent.ContentChangeType.values()) System.out.println(c);
public static ContentChangeEvent.ContentChangeType 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 nullpublic String id()