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