Package com.day.cq.wcm.api.msm
Enum RolloutManager.Trigger
- All Implemented Interfaces:
Serializable
,Comparable<RolloutManager.Trigger>
,java.lang.constant.Constable
- Enclosing interface:
RolloutManager
Trigger type that defines when a rollout should happen.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionauto rollout on modificationnever trigger a rollout (probbly only used for pull scenarios)auto rollout on activationrollout on explicit user rollouts -
Method Summary
Modifier and TypeMethodDescriptionstatic RolloutManager.Trigger
toString()
static RolloutManager.Trigger
Returns the enum constant of this type with the specified name.static RolloutManager.Trigger[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
NEVER
never trigger a rollout (probbly only used for pull scenarios) -
MODIFICATION
auto rollout on modification -
PUBLICATION
auto rollout on activation -
ROLLOUT
rollout on explicit user rollouts
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<RolloutManager.Trigger>
-
fromName
-