public enum UnitType extends Enum<UnitType>
| Enum Constant and Description |
|---|
ANGLEUNIT
Angle
|
LENGTHUNIT
Length
|
PARAMETRICUNIT
Parametric
|
SCALEUNIT
Scale
|
TIMEUNIT
Time
|
UNIT
Generic
|
| Modifier and Type | Method and Description |
|---|---|
static UnitType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnitType ANGLEUNIT
public static final UnitType LENGTHUNIT
public static final UnitType PARAMETRICUNIT
public static final UnitType SCALEUNIT
public static final UnitType TIMEUNIT
public static final UnitType UNIT
public static UnitType[] values()
for (UnitType c : UnitType.values()) System.out.println(c);
public static UnitType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 National Geospatial-Intelligence Agency. All rights reserved.