Package org.voltdb.task
Enum Class ActionType
- All Implemented Interfaces:
- Serializable,- Comparable<ActionType>,- Constable
Enum used to describe the type of the 
Action.- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionSchedule the provided callback to be invokedUnexpected error occurred within the scheduler and additional procedures will not be scheduledScheduler has reached an end to its life cycle and is not scheduling any more proceduresSchedule a procedure to be executed
- 
Method SummaryModifier and TypeMethodDescriptionbooleanisStop()static ActionTypeReturns the enum constant of this class with the specified name.static ActionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.EnumcompareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- 
Enum Constant Details- 
PROCEDURESchedule a procedure to be executed
- 
CALLBACKSchedule the provided callback to be invoked
- 
ERRORUnexpected error occurred within the scheduler and additional procedures will not be scheduled
- 
EXITScheduler has reached an end to its life cycle and is not scheduling any more procedures
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
isStoppublic boolean isStop()- Returns:
- trueif the action is a stop action
 
 
-