Uses of Class
com.redwood.scheduler.api.model.enumeration.TimeUnit
-
Packages that use TimeUnit Package Description com.redwood.scheduler.api.date Scheduler API - Dates and Periodscom.redwood.scheduler.api.model Scheduler API - Modelcom.redwood.scheduler.api.model.enumeration Scheduler API - Model Enumerations -
-
Uses of TimeUnit in com.redwood.scheduler.api.date
Methods in com.redwood.scheduler.api.date with parameters of type TimeUnit Modifier and Type Method Description void
DateTimeZone. add(int amount, TimeUnit timeUnit)
void
DateTimeZone. add(long amount, TimeUnit timeUnit)
When adding milliseconds, you may want to add more than MAXINT.static DateTimeZone
DateTimeZone. nowPlusOffset(int amount, TimeUnit timeUnit)
-
Uses of TimeUnit in com.redwood.scheduler.api.model
Methods in com.redwood.scheduler.api.model that return TimeUnit Modifier and Type Method Description TimeUnit
AlertEscalation. getDelayUnits()
Get the value for DelayUnits.TimeUnit
JobDefinitionAlertSourceStatus. getDelayUnits()
Get the value for DelayUnits.TimeUnit
MonitorAlertSourceRule. getDelayUnits()
Get the value for DelayUnits.TimeUnit
ProcessServerAlertSourceStatus. getDelayUnits()
Get the value for DelayUnits.TimeUnit
ProcessServerCheck. getDelayUnits()
Get the value for DelayUnits.TimeUnit
FinalStatusHandler. getRestartDelayUnits()
Get the value for RestartDelayUnits.TimeUnit
JobChain. getRestartDelayUnits()
Get the value for RestartDelayUnits.TimeUnit
JobChainStep. getRestartDelayUnits()
Get the value for RestartDelayUnits.TimeUnit
SAPProcessDefinition. getRestartDelayUnits()
Get the value for RestartDelayUnits.TimeUnit
SubmitFrameElement. getUnit()
Get the value for Unit.Methods in com.redwood.scheduler.api.model with parameters of type TimeUnit Modifier and Type Method Description void
AlertEscalation. setDelayUnits(TimeUnit newDelayUnits)
Set the value for DelayUnits.void
JobDefinitionAlertSourceStatus. setDelayUnits(TimeUnit newDelayUnits)
Set the value for DelayUnits.void
MonitorAlertSourceRule. setDelayUnits(TimeUnit newDelayUnits)
Set the value for DelayUnits.void
ProcessServerAlertSourceStatus. setDelayUnits(TimeUnit newDelayUnits)
Set the value for DelayUnits.void
ProcessServerCheck. setDelayUnits(TimeUnit newDelayUnits)
Set the value for DelayUnits.void
FinalStatusHandler. setRestartDelayUnits(TimeUnit newRestartDelayUnits)
Set the value for RestartDelayUnits.void
JobChain. setRestartDelayUnits(TimeUnit newRestartDelayUnits)
Set the value for RestartDelayUnits.void
JobChainStep. setRestartDelayUnits(TimeUnit newRestartDelayUnits)
Set the value for RestartDelayUnits.void
SAPProcessDefinition. setRestartDelayUnits(TimeUnit newRestartDelayUnits)
Set the value for RestartDelayUnits.void
SubmitFrameElement. setUnit(TimeUnit newUnit)
Set the value for Unit. -
Uses of TimeUnit in com.redwood.scheduler.api.model.enumeration
Methods in com.redwood.scheduler.api.model.enumeration that return TimeUnit Modifier and Type Method Description static TimeUnit
TimeUnit. safeValueOf(String value)
Helper function to return the TimeUnit represented byvalue
.static TimeUnit
TimeUnit. valueOf(char code)
Helper function to return the TimeUnit represented by code.static TimeUnit
TimeUnit. valueOf(Character code)
Helper function to return the TimeUnit represented by code.static TimeUnit
TimeUnit. valueOf(String name)
Returns the enum constant of this type with the specified name.static TimeUnit
TimeUnit. valueOfCode(String code)
Helper function to return the TimeUnit represented by code.static TimeUnit[]
TimeUnit. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-