Package de.xima.fc.timing
Enum TriggerKeyFactory.ETriggerGroups
- java.lang.Object
-
- java.lang.Enum<TriggerKeyFactory.ETriggerGroups>
-
- de.xima.fc.timing.TriggerKeyFactory.ETriggerGroups
-
- All Implemented Interfaces:
Serializable
,Comparable<TriggerKeyFactory.ETriggerGroups>
- Enclosing class:
- TriggerKeyFactory
public static enum TriggerKeyFactory.ETriggerGroups extends Enum<TriggerKeyFactory.ETriggerGroups>
Enumeration of the predefined for trigger groups- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLIENT_COUNTER
Trigger group for triggers ofClientCounter
sDATE_TRIGGER
Trigger group for date triggers that fire at a specific date.DELAY_TRIGGER
Trigger group for delayed triggers that fire later.REPEAT_TRIGGER
Trigger group for repeating triggers that fire periodically.WORKFLOW_TRIGGER
Trigger group for workflow triggers of the new workflow.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TriggerKeyFactory.ETriggerGroups
valueOf(String name)
Returns the enum constant of this type with the specified name.static TriggerKeyFactory.ETriggerGroups[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATE_TRIGGER
public static final TriggerKeyFactory.ETriggerGroups DATE_TRIGGER
Trigger group for date triggers that fire at a specific date.
-
DELAY_TRIGGER
public static final TriggerKeyFactory.ETriggerGroups DELAY_TRIGGER
Trigger group for delayed triggers that fire later.
-
REPEAT_TRIGGER
public static final TriggerKeyFactory.ETriggerGroups REPEAT_TRIGGER
Trigger group for repeating triggers that fire periodically.
-
WORKFLOW_TRIGGER
public static final TriggerKeyFactory.ETriggerGroups WORKFLOW_TRIGGER
Trigger group for workflow triggers of the new workflow.
-
CLIENT_COUNTER
public static final TriggerKeyFactory.ETriggerGroups CLIENT_COUNTER
Trigger group for triggers ofClientCounter
s
-
-
Method Detail
-
values
public static TriggerKeyFactory.ETriggerGroups[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TriggerKeyFactory.ETriggerGroups c : TriggerKeyFactory.ETriggerGroups.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TriggerKeyFactory.ETriggerGroups valueOf(String name)
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
-
-