public static enum SphericalProjector.ProjectorType extends java.lang.Enum<SphericalProjector.ProjectorType>
Enum Constant and Description |
---|
GNOMONIC |
LAMBERT |
ORTHOGRAPHIC |
POLAR |
STEREOGRAPHIC |
Modifier and Type | Method and Description |
---|---|
static SphericalProjector.ProjectorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SphericalProjector.ProjectorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SphericalProjector.ProjectorType POLAR
public static final SphericalProjector.ProjectorType ORTHOGRAPHIC
public static final SphericalProjector.ProjectorType STEREOGRAPHIC
public static final SphericalProjector.ProjectorType LAMBERT
public static final SphericalProjector.ProjectorType GNOMONIC
public static SphericalProjector.ProjectorType[] values()
for (SphericalProjector.ProjectorType c : SphericalProjector.ProjectorType.values()) System.out.println(c);
public static SphericalProjector.ProjectorType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null