public enum IOSInterruptionLevel extends java.lang.Enum<IOSInterruptionLevel>
| Enum Constant and Description |
|---|
ACTIVE |
CRITICAL |
PASSIVE |
TIME_SENSITIVE |
| Modifier and Type | Method and Description |
|---|---|
static java.util.Optional<IOSInterruptionLevel> |
find(java.lang.String identifier) |
java.lang.String |
getInterruptionLevel() |
static IOSInterruptionLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IOSInterruptionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IOSInterruptionLevel PASSIVE
public static final IOSInterruptionLevel ACTIVE
public static final IOSInterruptionLevel TIME_SENSITIVE
public static final IOSInterruptionLevel CRITICAL
public static IOSInterruptionLevel[] values()
for (IOSInterruptionLevel c : IOSInterruptionLevel.values()) System.out.println(c);
public static IOSInterruptionLevel valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getInterruptionLevel()
public static java.util.Optional<IOSInterruptionLevel> find(java.lang.String identifier)