public static enum GKCard.ConnectionState extends java.lang.Enum<GKCard.ConnectionState>
GKCard and
a GateKeeper Card.| Enum Constant and Description |
|---|
BLUETOOTH_DISABLED
Bluetooth is not enabled on the current device.
|
CARD_NOT_PAIRED
The current device has not been paired with the GateKeeper Card.
|
CONNECTED
The
GKCard is connected with the GateKeeper Card. |
CONNECTING
The
GKCard is attempting to connect with the GateKeeper Card. |
DISCONNECTED
The
GKCard is disconnected from the GateKeeper Card. |
DISCONNECTING
The
GKCard is disconnecting from the GateKeeper Card. |
TRANSFERRING
The
GKCard is transferring data to or from the GateKeeper Card. |
| Modifier and Type | Method and Description |
|---|---|
static GKCard.ConnectionState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GKCard.ConnectionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GKCard.ConnectionState BLUETOOTH_DISABLED
public static final GKCard.ConnectionState CARD_NOT_PAIRED
public static final GKCard.ConnectionState CONNECTING
GKCard is attempting to connect with the GateKeeper Card.public static final GKCard.ConnectionState CONNECTED
GKCard is connected with the GateKeeper Card.public static final GKCard.ConnectionState TRANSFERRING
GKCard is transferring data to or from the GateKeeper Card.public static final GKCard.ConnectionState DISCONNECTING
GKCard is disconnecting from the GateKeeper Card.public static final GKCard.ConnectionState DISCONNECTED
GKCard is disconnected from the GateKeeper Card.public static GKCard.ConnectionState[] values()
for (GKCard.ConnectionState c : GKCard.ConnectionState.values()) System.out.println(c);
public static GKCard.ConnectionState 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