public static enum Ultrasonic.Unit extends java.lang.Enum<Ultrasonic.Unit>
Enum Constant and Description |
---|
kInches
Use inches for PIDGet.
|
kMillimeters
Use millimeters for PIDGet.
|
Modifier and Type | Method and Description |
---|---|
static Ultrasonic.Unit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Ultrasonic.Unit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ultrasonic.Unit kInches
public static final Ultrasonic.Unit kMillimeters
public static Ultrasonic.Unit[] values()
for (Ultrasonic.Unit c : Ultrasonic.Unit.values()) System.out.println(c);
public static Ultrasonic.Unit 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