public enum OutputLimitRateType extends Enum<OutputLimitRateType>
Enum Constant and Description |
---|
AFTER
Output after a given time period
|
CRONTAB
Output following a crontab-like schedule.
|
EVENTS
Output by number of events.
|
TERM
Output upon context partition (agent instance) termination
|
TIME_PERIOD
Output based on a time period passing.
|
WHEN_EXPRESSION
Output when an expression turns true.
|
Modifier and Type | Method and Description |
---|---|
static OutputLimitRateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputLimitRateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputLimitRateType EVENTS
public static final OutputLimitRateType CRONTAB
public static final OutputLimitRateType WHEN_EXPRESSION
public static final OutputLimitRateType TIME_PERIOD
public static final OutputLimitRateType AFTER
public static final OutputLimitRateType TERM
public static OutputLimitRateType[] values()
for (OutputLimitRateType c : OutputLimitRateType.values()) System.out.println(c);
public static OutputLimitRateType 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 null