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