private static enum Lister.Prefix extends Enum<Lister.Prefix>
Modifier and Type | Method and Description |
---|---|
static Lister.Prefix |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Lister.Prefix[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Lister.Prefix LOCK
public static final Lister.Prefix LIKELY
public static final Lister.Prefix UNLIKELY
public static Lister.Prefix[] values()
for (Lister.Prefix c : Lister.Prefix.values()) System.out.println(c);
public static Lister.Prefix valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null