public static enum VerticalDatum.Type extends Enum<VerticalDatum.Type>
| Enum Constant and Description |
|---|
BAROMETRIC |
DEPTH |
ELLIPSOIDAL |
GEOIDAL |
ORTHOMETRIC |
OTHER_SURFACE |
| Modifier and Type | Method and Description |
|---|---|
static VerticalDatum.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerticalDatum.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerticalDatum.Type GEOIDAL
public static final VerticalDatum.Type ELLIPSOIDAL
public static final VerticalDatum.Type DEPTH
public static final VerticalDatum.Type BAROMETRIC
public static final VerticalDatum.Type ORTHOMETRIC
public static final VerticalDatum.Type OTHER_SURFACE
public static VerticalDatum.Type[] values()
for (VerticalDatum.Type c : VerticalDatum.Type.values()) System.out.println(c);
public static VerticalDatum.Type 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 © 2019 CNRS. All rights reserved.