| Enum Constant and Description |
|---|
TYPE_MULTIPLE
Cradle with multiple slots.
|
TYPE_SIMPLIFIED
Cradle Simplified.
|
TYPE_SINGLE
Cradle with single slot.
|
TYPE_SX5_3SD_WIRED
Cradle X5 with multiple slots wired.
|
TYPE_SX5_3SD_WIRELESS
Cradle X5 with multiple slots wireless.
|
TYPE_SX5_3SD_WIRELESS_LOCKING
Cradle X5 with locking multiple slots wireless.
|
TYPE_SX5_SSD_WIRED
Cradle X5 single slot wired.
|
TYPE_SX5_SSD_WIRELESS
Cradle X5 single slot wireless.
|
TYPE_UNKNOWN
Unknown Cradle type.
|
| Modifier and Type | Method and Description |
|---|---|
static Type |
fromInt(int n)
Retrieves the corresponding Type value, from a valid integer.
|
int |
toInt()
Converts the Type enum to its integer representing value.
|
java.lang.String |
toString() |
static Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type TYPE_UNKNOWN
public static final Type TYPE_SIMPLIFIED
public static final Type TYPE_SINGLE
public static final Type TYPE_MULTIPLE
public static final Type TYPE_SX5_SSD_WIRED
public static final Type TYPE_SX5_SSD_WIRELESS
public static final Type TYPE_SX5_3SD_WIRED
public static final Type TYPE_SX5_3SD_WIRELESS
public static final Type TYPE_SX5_3SD_WIRELESS_LOCKING
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type 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 nullpublic int toInt()
public static Type fromInt(int n)
n - intpublic java.lang.String toString()
toString in class java.lang.Enum<Type>