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