public enum ReadyState extends Enum<ReadyState>
Enum Constant and Description |
---|
CLOSED |
CLOSING |
NOT_YET_CONNECTED |
OPEN |
Modifier and Type | Method and Description |
---|---|
static ReadyState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReadyState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadyState NOT_YET_CONNECTED
public static final ReadyState OPEN
public static final ReadyState CLOSING
public static final ReadyState CLOSED
public static ReadyState[] values()
for (ReadyState c : ReadyState.values()) System.out.println(c);
public static ReadyState 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 nullCopyright © 2021. All rights reserved.