public static enum Projection.Orientation extends Enum<Projection.Orientation>
| Enum Constant and Description |
|---|
OBLIQUE |
SECANT |
TANGENT |
TRANSVERSE |
| Modifier and Type | Method and Description |
|---|---|
static Projection.Orientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Projection.Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Projection.Orientation OBLIQUE
public static final Projection.Orientation SECANT
public static final Projection.Orientation TANGENT
public static final Projection.Orientation TRANSVERSE
public static Projection.Orientation[] values()
for (Projection.Orientation c : Projection.Orientation.values()) System.out.println(c);
public static Projection.Orientation 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 © 2019 CNRS. All rights reserved.