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