public static enum Instance.SLAStatus extends java.lang.Enum<Instance.SLAStatus>
| Modifier and Type | Method and Description |
|---|---|
static Instance.SLAStatus |
create(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static Instance.SLAStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Instance.SLAStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Instance.SLAStatus ON_TIME
public static final Instance.SLAStatus OVERDUE
public static final Instance.SLAStatus UNTRACKED
public static Instance.SLAStatus[] values()
for (Instance.SLAStatus c : Instance.SLAStatus.values()) System.out.println(c);
public static Instance.SLAStatus 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 static Instance.SLAStatus create(java.lang.String value)
public java.lang.String getValue()
public java.lang.String toString()
toString in class java.lang.Enum<Instance.SLAStatus>