Enum PairingHelper.PairingState
- java.lang.Object
-
- java.lang.Enum<PairingHelper.PairingState>
-
- com.thecoderscorner.menu.remote.protocol.PairingHelper.PairingState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PairingHelper.PairingState>
- Enclosing class:
- PairingHelper
public static enum PairingHelper.PairingState extends java.lang.Enum<PairingHelper.PairingState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTEDDISCONNECTEDNOT_ACCEPTEDPAIRING_SENTTIMED_OUT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PairingHelper.PairingStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PairingHelper.PairingState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISCONNECTED
public static final PairingHelper.PairingState DISCONNECTED
-
PAIRING_SENT
public static final PairingHelper.PairingState PAIRING_SENT
-
NOT_ACCEPTED
public static final PairingHelper.PairingState NOT_ACCEPTED
-
ACCEPTED
public static final PairingHelper.PairingState ACCEPTED
-
TIMED_OUT
public static final PairingHelper.PairingState TIMED_OUT
-
-
Method Detail
-
values
public static PairingHelper.PairingState[] 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 (PairingHelper.PairingState c : PairingHelper.PairingState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PairingHelper.PairingState valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-