public static enum HB.DeviceType extends java.lang.Enum<HB.DeviceType>
Enum Constant and Description |
---|
DEBUGGER
The Device is actually being run inside the Debugger
|
PI_1
Raspberry Pi V1
|
PI_2
Raspberry Pi V2
|
PI_3
Raspberry Pi V3
|
PI_4
Raspberry Pi V4
|
PI_ZERO
Raspberry Pi zero
|
SIMULATOR
This is a simulator
|
UNKONWN
The Harware Type is unknown or undefined
|
Modifier and Type | Method and Description |
---|---|
static HB.DeviceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HB.DeviceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HB.DeviceType UNKONWN
public static final HB.DeviceType DEBUGGER
public static final HB.DeviceType SIMULATOR
public static final HB.DeviceType PI_ZERO
public static final HB.DeviceType PI_1
public static final HB.DeviceType PI_2
public static final HB.DeviceType PI_3
public static final HB.DeviceType PI_4
public static HB.DeviceType[] values()
for (HB.DeviceType c : HB.DeviceType.values()) System.out.println(c);
public static HB.DeviceType 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