public static enum ContourRegion.ContourRegionType extends Enum<ContourRegion.ContourRegionType>
| Enum Constant and Description |
|---|
Interior
All contours lie entirely within the interior of the TIN and do not
intersect its perimeter.
|
Perimeter
At least one contour lies on the perimeter of the TIN.
|
| Modifier and Type | Method and Description |
|---|---|
static ContourRegion.ContourRegionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContourRegion.ContourRegionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContourRegion.ContourRegionType Interior
public static final ContourRegion.ContourRegionType Perimeter
public static ContourRegion.ContourRegionType[] values()
for (ContourRegion.ContourRegionType c : ContourRegion.ContourRegionType.values()) System.out.println(c);
public static ContourRegion.ContourRegionType 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.