public static enum UnitSet.SetType extends java.lang.Enum<UnitSet.SetType>
Enum Constant and Description |
---|
ACCELERATION |
ANGLE |
ANGULAR_VELOCITY |
AREA |
FORCE |
INERTIA |
LENGTH |
MASS |
MASS_DENSITY |
TIME |
TORQUE |
VELOCITY |
VOLUME |
Modifier and Type | Method and Description |
---|---|
static UnitSet.SetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnitSet.SetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnitSet.SetType TIME
public static final UnitSet.SetType LENGTH
public static final UnitSet.SetType MASS
public static final UnitSet.SetType ANGLE
public static final UnitSet.SetType AREA
public static final UnitSet.SetType VOLUME
public static final UnitSet.SetType VELOCITY
public static final UnitSet.SetType ACCELERATION
public static final UnitSet.SetType FORCE
public static final UnitSet.SetType INERTIA
public static final UnitSet.SetType MASS_DENSITY
public static final UnitSet.SetType ANGULAR_VELOCITY
public static final UnitSet.SetType TORQUE
public static UnitSet.SetType[] values()
for (UnitSet.SetType c : UnitSet.SetType.values()) System.out.println(c);
public static UnitSet.SetType 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