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