TwinConnectionState@Deprecated public enum TwinConnectionState extends Enum<TwinConnectionState>
| Enum Constant and Description |
|---|
connected
Deprecated.
|
disconnected
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static TwinConnectionState |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static TwinConnectionState[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="disconnected") public static final TwinConnectionState disconnected
@SerializedName(value="connected") public static final TwinConnectionState connected
public static TwinConnectionState[] values()
for (TwinConnectionState c : TwinConnectionState.values()) System.out.println(c);
public static TwinConnectionState 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 © 2019. All rights reserved.