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