Enum Class ContentMaintenanceAction
java.lang.Object
java.lang.Enum<ContentMaintenanceAction>
com.gentics.contentnode.rest.model.ContentMaintenanceAction
- All Implemented Interfaces:
Serializable
,Comparable<ContentMaintenanceAction>
,java.lang.constant.Constable
Maintenance actions
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDelay dirted objects.Mark objects for (re-)publishing.Mark dirted objects as "published"Republish delayed objects. -
Method Summary
Modifier and TypeMethodDescriptionstatic ContentMaintenanceAction
Returns the enum constant of this class with the specified name.static ContentMaintenanceAction[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
dirt
Mark objects for (re-)publishing. -
delay
Delay dirted objects. -
publishDelayed
Republish delayed objects. -
markPublished
Mark dirted objects as "published"
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-