public enum CompletePageTask extends Enum<CompletePageTask>
Enum Constant and Description |
---|
delete
Task is completed, when page is deleted
|
move
Task is completed, when page is moved
|
publish
Task is completed, when page is published
|
save
Task is completed, when page is saved
|
Modifier and Type | Method and Description |
---|---|
static CompletePageTask |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompletePageTask[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompletePageTask delete
public static final CompletePageTask move
public static final CompletePageTask publish
public static final CompletePageTask save
public static CompletePageTask[] values()
for (CompletePageTask c : CompletePageTask.values()) System.out.println(c);
public static CompletePageTask 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 © 2024 Gentics Software. All rights reserved.