public static enum EllipsoidToCentricTransform.TargetType extends Enum<EllipsoidToCentricTransform.TargetType>
TODO: The spherical case is not yet implemented. We could also consider supporting the cylindrical case, but its usefulness is not obvious. See SIS-302.
Defined in the sis-referencing module
| Enum Constant and Description |
|---|
CARTESIAN
Indicates conversions from
ellipsoidal to
Cartesian coordinate system.
|
| Modifier and Type | Method and Description |
|---|---|
static EllipsoidToCentricTransform.TargetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EllipsoidToCentricTransform.TargetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EllipsoidToCentricTransform.TargetType CARTESIAN
public static EllipsoidToCentricTransform.TargetType[] values()
for (EllipsoidToCentricTransform.TargetType c : EllipsoidToCentricTransform.TargetType.values()) System.out.println(c);
public static EllipsoidToCentricTransform.TargetType 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 © 2010–2017 The Apache Software Foundation. All rights reserved.