public enum EllipsoidType extends Enum<EllipsoidType>
| Enum Constant and Description |
|---|
OBLATE
Oblate ellipsoid of revolution
|
TRIAXIAL
Triaxial ellipsoid
|
| Modifier and Type | Method and Description |
|---|---|
static EllipsoidType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EllipsoidType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EllipsoidType OBLATE
public static final EllipsoidType TRIAXIAL
public static EllipsoidType[] values()
for (EllipsoidType c : EllipsoidType.values()) System.out.println(c);
public static EllipsoidType 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.