public static enum Contour.ContourType extends Enum<Contour.ContourType>
| Enum Constant and Description |
|---|
Interior
Contour lies entirely in the interior of the TIN with the possible
exception of the two end points which may lie on perimeter edges.
|
Perimeter
Contour is lies entirely on the perimeter of the TIN.
|
| Modifier and Type | Method and Description |
|---|---|
static Contour.ContourType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Contour.ContourType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Contour.ContourType Interior
public static final Contour.ContourType Perimeter
public static Contour.ContourType[] values()
for (Contour.ContourType c : Contour.ContourType.values()) System.out.println(c);
public static Contour.ContourType 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. All rights reserved.