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