public static enum Violation.RESOLUTION_ID extends java.lang.Enum<Violation.RESOLUTION_ID>
Enum Constant and Description |
---|
NOT_REPAIRED |
REMOVED |
REPAIRED |
Modifier and Type | Method and Description |
---|---|
static Violation.RESOLUTION_ID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Violation.RESOLUTION_ID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Violation.RESOLUTION_ID NOT_REPAIRED
public static final Violation.RESOLUTION_ID REPAIRED
public static final Violation.RESOLUTION_ID REMOVED
public static Violation.RESOLUTION_ID[] values()
for (Violation.RESOLUTION_ID c : Violation.RESOLUTION_ID.values()) System.out.println(c);
public static Violation.RESOLUTION_ID 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 null