Enum HandlerAction
- java.lang.Object
- 
- java.lang.Enum<HandlerAction>
- 
- com.redwood.scheduler.api.model.enumeration.HandlerAction
 
 
- 
- All Implemented Interfaces:
- BaseSchedulerEnumeration<HandlerAction,Character>,- SchedulerEnumeration<HandlerAction>,- Serializable,- Comparable<HandlerAction>
 
 public enum HandlerAction extends Enum<HandlerAction> implements SchedulerEnumeration<HandlerAction> Possible actions that a StatusHandler can take. (Character Enumeration)
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ContinueIgnore the status and continue with the chain execution.GotoStepJump to a specific (numbered) process step in the current chain definition.IgnoreJobChainDefaultIgnore the equivalent default status handler.MarkCompletedMark the associated chain or process step as completed.RaiseErrorRaise an error with a specific return code and message.RequestRestartRequest a restart by sending a message to the Messages monitor.RestartChainRestart the chain.RestartChainMasterRestart the chain with the master Process Definition.RestartFailedJobsRestart the process step definition after the delay.RestartFailedJobsMasterRestart the process step definition with the master Process Definition after the delay.RestartStepRestart the process step.RestartStepDelayedRestart the process step with the delay specified at the step.RestartStepDelayedMasterRestart the process step with the master Process Definition with the delay specified at the step.RestartStepMasterRestart the process step with the master Process Definition.
 - 
Field SummaryFields Modifier and Type Field Description static charContinueCodeThe char returned from Continue.getCodeEx().static charGotoStepCodeThe char returned from GotoStep.getCodeEx().static charIgnoreJobChainDefaultCodeThe char returned from IgnoreJobChainDefault.getCodeEx().static charMarkCompletedCodeThe char returned from MarkCompleted.getCodeEx().static charRaiseErrorCodeThe char returned from RaiseError.getCodeEx().static charRequestRestartCodeThe char returned from RequestRestart.getCodeEx().static charRestartChainCodeThe char returned from RestartChain.getCodeEx().static charRestartChainMasterCodeThe char returned from RestartChainMaster.getCodeEx().static charRestartFailedJobsCodeThe char returned from RestartFailedJobs.getCodeEx().static charRestartFailedJobsMasterCodeThe char returned from RestartFailedJobsMaster.getCodeEx().static charRestartStepCodeThe char returned from RestartStep.getCodeEx().static charRestartStepDelayedCodeThe char returned from RestartStepDelayed.getCodeEx().static charRestartStepDelayedMasterCodeThe char returned from RestartStepDelayedMaster.getCodeEx().static charRestartStepMasterCodeThe char returned from RestartStepMaster.getCodeEx().
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description chargetCodeEx()Get the code that is used to represent this enumeration in the database.CharactergetCodeExCharacter()Get the code that is used to represent this enumeration in the database.StringgetCodeExString()Get the code that is used to represent this enumeration in the database.CharactergetCodeExValue()Return the code for the enumeration item as the database type of this enumeration.StringgetDescriptionKey()Get the translation-key for the description that must be used to retrieve the locale-specific description of this enumeration.StringgetPopupPath()Describes the path to this HandlerAction from the root StatusHandler pop-up menu.StringgetTranslationEN()Get the English name of this enumeration.StringgetTranslationKey()Get the translation-key that must be used to retrieve the locale-specific name of this enumeration.static HandlerActionsafeValueOf(String value)Helper function to return the HandlerAction represented byvalue.static HandlerActionvalueOf(char code)Helper function to return the HandlerAction represented by code.static HandlerActionvalueOf(Character code)Helper function to return the HandlerAction represented by code.static HandlerActionvalueOf(String name)Returns the enum constant of this type with the specified name.static HandlerActionvalueOfCode(String code)Helper function to return the HandlerAction represented by code.static HandlerAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.- 
Methods inherited from class java.lang.Enumclone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 - 
Methods inherited from interface com.redwood.scheduler.api.model.enumeration.BaseSchedulerEnumerationname, ordinal
 - 
Methods inherited from interface java.lang.ComparablecompareTo
 
- 
 
- 
- 
- 
Enum Constant Detail- 
Continuepublic static final HandlerAction Continue Ignore the status and continue with the chain execution.
 - 
RequestRestartpublic static final HandlerAction RequestRestart Request a restart by sending a message to the Messages monitor.
 - 
GotoSteppublic static final HandlerAction GotoStep Jump to a specific (numbered) process step in the current chain definition.
 - 
RaiseErrorpublic static final HandlerAction RaiseError Raise an error with a specific return code and message.
 - 
MarkCompletedpublic static final HandlerAction MarkCompleted Mark the associated chain or process step as completed.
 - 
RestartSteppublic static final HandlerAction RestartStep Restart the process step.
 - 
RestartStepMasterpublic static final HandlerAction RestartStepMaster Restart the process step with the master Process Definition.
 - 
RestartStepDelayedpublic static final HandlerAction RestartStepDelayed Restart the process step with the delay specified at the step.
 - 
RestartStepDelayedMasterpublic static final HandlerAction RestartStepDelayedMaster Restart the process step with the master Process Definition with the delay specified at the step.
 - 
RestartFailedJobspublic static final HandlerAction RestartFailedJobs Restart the process step definition after the delay. This does a restart on error for any call that ran previously: Call was to a normal process definition - just run it again. Call was to a chain definition - run it from point of failure.
 - 
RestartFailedJobsMasterpublic static final HandlerAction RestartFailedJobsMaster Restart the process step definition with the master Process Definition after the delay. This does a restart on error for any call that ran previously: Call was to a normal process definition - just run it again. Call was to a chain definition - run it from point of failure.
 - 
RestartChainpublic static final HandlerAction RestartChain Restart the chain.
 - 
RestartChainMasterpublic static final HandlerAction RestartChainMaster Restart the chain with the master Process Definition.
 - 
IgnoreJobChainDefaultpublic static final HandlerAction IgnoreJobChainDefault Ignore the equivalent default status handler. This is an unusual action
 
- 
 - 
Field Detail- 
ContinueCodepublic static final char ContinueCode The char returned from Continue.getCodeEx().- See Also:
- Continue, Constant Field Values
 
 - 
RequestRestartCodepublic static final char RequestRestartCode The char returned from RequestRestart.getCodeEx().- See Also:
- RequestRestart, Constant Field Values
 
 - 
GotoStepCodepublic static final char GotoStepCode The char returned from GotoStep.getCodeEx().- See Also:
- GotoStep, Constant Field Values
 
 - 
RaiseErrorCodepublic static final char RaiseErrorCode The char returned from RaiseError.getCodeEx().- See Also:
- RaiseError, Constant Field Values
 
 - 
MarkCompletedCodepublic static final char MarkCompletedCode The char returned from MarkCompleted.getCodeEx().- See Also:
- MarkCompleted, Constant Field Values
 
 - 
RestartStepCodepublic static final char RestartStepCode The char returned from RestartStep.getCodeEx().- See Also:
- RestartStep, Constant Field Values
 
 - 
RestartStepMasterCodepublic static final char RestartStepMasterCode The char returned from RestartStepMaster.getCodeEx().- See Also:
- RestartStepMaster, Constant Field Values
 
 - 
RestartStepDelayedCodepublic static final char RestartStepDelayedCode The char returned from RestartStepDelayed.getCodeEx().- See Also:
- RestartStepDelayed, Constant Field Values
 
 - 
RestartStepDelayedMasterCodepublic static final char RestartStepDelayedMasterCode The char returned from RestartStepDelayedMaster.getCodeEx().- See Also:
- RestartStepDelayedMaster, Constant Field Values
 
 - 
RestartFailedJobsCodepublic static final char RestartFailedJobsCode The char returned from RestartFailedJobs.getCodeEx().- See Also:
- RestartFailedJobs, Constant Field Values
 
 - 
RestartFailedJobsMasterCodepublic static final char RestartFailedJobsMasterCode The char returned from RestartFailedJobsMaster.getCodeEx().- See Also:
- RestartFailedJobsMaster, Constant Field Values
 
 - 
RestartChainCodepublic static final char RestartChainCode The char returned from RestartChain.getCodeEx().- See Also:
- RestartChain, Constant Field Values
 
 - 
RestartChainMasterCodepublic static final char RestartChainMasterCode The char returned from RestartChainMaster.getCodeEx().- See Also:
- RestartChainMaster, Constant Field Values
 
 - 
IgnoreJobChainDefaultCodepublic static final char IgnoreJobChainDefaultCode The char returned from IgnoreJobChainDefault.getCodeEx().- See Also:
- IgnoreJobChainDefault, Constant Field Values
 
 
- 
 - 
Method Detail- 
valuespublic static HandlerAction[] 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 (HandlerAction c : HandlerAction.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HandlerAction 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 name
- NullPointerException- if the argument is null
 
 - 
getPopupPathpublic String getPopupPath() Describes the path to this HandlerAction from the root StatusHandler pop-up menu.- Returns:
- the value for PopupPath.
 
 - 
valueOfCodepublic static HandlerAction valueOfCode(String code) Helper function to return the HandlerAction represented by code. code must be a single character. If code is null, longer than one character, empty, or not a valid code then this method will return null.- Parameters:
- code- A string with one character that is one of the codes for HandlerAction
- Returns:
- The HandlerAction corresponding to code, or null, if code is null, longer than one character, or not a valid code
 
 - 
safeValueOfpublic static HandlerAction safeValueOf(String value) Helper function to return the HandlerAction represented byvalue. Ifvalueis null, or not a valid HandlerAction enumeration then this method will return null.The main difference between this method and valueOf(String), is that this method will return null when passed an invalidvalue,valueOf(String)will throw anIllegalArgumentException.- Parameters:
- value- The string value that corresponds to the requested enumeration value
- Returns:
- The HandlerAction corresponding to value, or null, ifvalueis null, or not a valid enumeration
- See Also:
- valueOf(String)
 
 - 
valueOfpublic static HandlerAction valueOf(Character code) Helper function to return the HandlerAction represented by code. If code is null, or not a valid HandlerAction code then this method will return null.- Parameters:
- code- Character that is one of the codes for HandlerAction
- Returns:
- The HandlerAction corresponding to code, or null, if code is null, or not a valid code
 
 - 
valueOfpublic static HandlerAction valueOf(char code) Helper function to return the HandlerAction represented by code. If code is not a valid HandlerAction code then this method will return null.- Parameters:
- code- char that is one of the codes for HandlerAction
- Returns:
- The HandlerAction corresponding to code, or null, if code is not a valid code
 
 - 
getCodeExpublic char getCodeEx() Description copied from interface:SchedulerEnumerationGet the code that is used to represent this enumeration in the database.- Specified by:
- getCodeExin interface- SchedulerEnumeration<HandlerAction>
- Returns:
- the database code for the enumeration
 
 - 
getCodeExValuepublic Character getCodeExValue() Description copied from interface:BaseSchedulerEnumerationReturn the code for the enumeration item as the database type of this enumeration.- Specified by:
- getCodeExValuein interface- BaseSchedulerEnumeration<HandlerAction,Character>
- Returns:
- the enumeration code
 
 - 
getCodeExCharacterpublic Character getCodeExCharacter() Description copied from interface:SchedulerEnumerationGet the code that is used to represent this enumeration in the database.- Specified by:
- getCodeExCharacterin interface- SchedulerEnumeration<HandlerAction>
- Returns:
- the database code for the enumeration
 
 - 
getTranslationKeypublic String getTranslationKey() Description copied from interface:BaseSchedulerEnumerationGet the translation-key that must be used to retrieve the locale-specific name of this enumeration.- Specified by:
- getTranslationKeyin interface- BaseSchedulerEnumeration<HandlerAction,Character>
- Returns:
- the key.
 
 - 
getTranslationENpublic String getTranslationEN() Description copied from interface:BaseSchedulerEnumerationGet the English name of this enumeration.- Specified by:
- getTranslationENin interface- BaseSchedulerEnumeration<HandlerAction,Character>
- Returns:
- the English name of this enumeration.
 
 - 
getDescriptionKeypublic String getDescriptionKey() Description copied from interface:BaseSchedulerEnumerationGet the translation-key for the description that must be used to retrieve the locale-specific description of this enumeration.- Specified by:
- getDescriptionKeyin interface- BaseSchedulerEnumeration<HandlerAction,Character>
- Returns:
- the key that can be passed to
         SchedulerSession.translateField(String)to retrieve the translated description.
 
 - 
getCodeExStringpublic String getCodeExString() Description copied from interface:SchedulerEnumerationGet the code that is used to represent this enumeration in the database.- Specified by:
- getCodeExStringin interface- SchedulerEnumeration<HandlerAction>
- Returns:
- the database code for the enumeration
 
 
- 
 
-