public static enum HardwareDevice.Manufacturer extends java.lang.Enum<HardwareDevice.Manufacturer>
Enum Constant and Description |
---|
Adafruit |
AMS |
HiTechnic |
Lego |
Lynx |
Matrix |
ModernRobotics |
Other |
STMicroelectronics |
Unknown |
Modifier and Type | Method and Description |
---|---|
static HardwareDevice.Manufacturer |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HardwareDevice.Manufacturer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HardwareDevice.Manufacturer Unknown
public static final HardwareDevice.Manufacturer Other
public static final HardwareDevice.Manufacturer Lego
public static final HardwareDevice.Manufacturer HiTechnic
public static final HardwareDevice.Manufacturer ModernRobotics
public static final HardwareDevice.Manufacturer Adafruit
public static final HardwareDevice.Manufacturer Matrix
public static final HardwareDevice.Manufacturer Lynx
public static final HardwareDevice.Manufacturer AMS
public static final HardwareDevice.Manufacturer STMicroelectronics
public static HardwareDevice.Manufacturer[] values()
for (HardwareDevice.Manufacturer c : HardwareDevice.Manufacturer.values()) System.out.println(c);
public static HardwareDevice.Manufacturer 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