public enum SeverityKey extends java.lang.Enum<SeverityKey>
| Modifier and Type | Class and Description |
|---|---|
static class |
SeverityKey.Adapter |
| Enum Constant and Description |
|---|
NUMBER_1 |
NUMBER_2 |
NUMBER_3 |
NUMBER_4 |
NUMBER_5 |
| Modifier and Type | Method and Description |
|---|---|
static SeverityKey |
fromValue(java.lang.String text) |
java.lang.Integer |
getValue() |
java.lang.String |
toString() |
static SeverityKey |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SeverityKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeverityKey NUMBER_1
public static final SeverityKey NUMBER_2
public static final SeverityKey NUMBER_3
public static final SeverityKey NUMBER_4
public static final SeverityKey NUMBER_5
public static SeverityKey[] values()
for (SeverityKey c : SeverityKey.values()) System.out.println(c);
public static SeverityKey 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.Integer getValue()
public java.lang.String toString()
toString in class java.lang.Enum<SeverityKey>public static SeverityKey fromValue(java.lang.String text)