Enum ConnectionState.Phase
- java.lang.Object
-
- java.lang.Enum<ConnectionState.Phase>
-
- org.bidib.jbidibc.netbidib.server.ConnectionState.Phase
-
- All Implemented Interfaces:
Serializable,Comparable<ConnectionState.Phase>
- Enclosing class:
- ConnectionState
public static enum ConnectionState.Phase extends Enum<ConnectionState.Phase>
Enums for each phase.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIRMATION_PENDINGNOT_CONNECTEDPAIREDUNPAIRED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConnectionState.PhasevalueOf(String name)Returns the enum constant of this type with the specified name.static ConnectionState.Phase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_CONNECTED
public static final ConnectionState.Phase NOT_CONNECTED
-
CONFIRMATION_PENDING
public static final ConnectionState.Phase CONFIRMATION_PENDING
-
UNPAIRED
public static final ConnectionState.Phase UNPAIRED
-
PAIRED
public static final ConnectionState.Phase PAIRED
-
-
Method Detail
-
values
public static ConnectionState.Phase[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConnectionState.Phase c : ConnectionState.Phase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConnectionState.Phase valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-