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