Uses of Class
com.redwood.scheduler.api.model.enumeration.HandlerAction
-
Packages that use HandlerAction Package Description com.redwood.scheduler.api.model Scheduler API - Modelcom.redwood.scheduler.api.model.enumeration Scheduler API - Model Enumerations -
-
Uses of HandlerAction in com.redwood.scheduler.api.model
Methods in com.redwood.scheduler.api.model that return HandlerAction Modifier and Type Method Description HandlerAction
StatusHandler. getAction()
Get the value for Action.Methods in com.redwood.scheduler.api.model with parameters of type HandlerAction Modifier and Type Method Description void
StatusHandler. setAction(HandlerAction newAction)
Set the value for Action. -
Uses of HandlerAction in com.redwood.scheduler.api.model.enumeration
Methods in com.redwood.scheduler.api.model.enumeration that return HandlerAction Modifier and Type Method Description static HandlerAction
HandlerAction. safeValueOf(String value)
Helper function to return the HandlerAction represented byvalue
.static HandlerAction
HandlerAction. valueOf(char code)
Helper function to return the HandlerAction represented by code.static HandlerAction
HandlerAction. valueOf(Character code)
Helper function to return the HandlerAction represented by code.static HandlerAction
HandlerAction. valueOf(String name)
Returns the enum constant of this type with the specified name.static HandlerAction
HandlerAction. valueOfCode(String code)
Helper function to return the HandlerAction represented by code.static HandlerAction[]
HandlerAction. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-