public enum ComputationType extends Enum<ComputationType>
| Enum Constant and Description |
|---|
CARTESIAN
The geometry coordinates are interpreted using cartesian logic.
|
SPHERICAL
The geometry coordinates are interpreted using spherical logic.
|
| Modifier and Type | Method and Description |
|---|---|
static ComputationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComputationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComputationType CARTESIAN
public static final ComputationType SPHERICAL
public static ComputationType[] values()
for (ComputationType c : ComputationType.values()) System.out.println(c);
public static ComputationType 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 null