public static enum DelaunayData.MODE extends Enum<DelaunayData.MODE>
| Enum Constant and Description |
|---|
CONSTRAINED |
DELAUNAY |
TESSELLATION |
| Modifier and Type | Method and Description |
|---|---|
static DelaunayData.MODE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DelaunayData.MODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelaunayData.MODE DELAUNAY
public static final DelaunayData.MODE CONSTRAINED
public static final DelaunayData.MODE TESSELLATION
public static DelaunayData.MODE[] values()
for (DelaunayData.MODE c : DelaunayData.MODE.values()) System.out.println(c);
public static DelaunayData.MODE 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.