public enum EnumContourGeometricType extends java.lang.Enum<EnumContourGeometricType>
| Enum Constant and Description |
|---|
CLOSED_PLANAR
The CLOSED_PLANAR.
|
OPEN_NONPLANAR
The OPEN_NONPLANAR.
|
OPEN_PLANAR
The OPEN_PLANAR.
|
POINT
The POINT.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Gets the value.
|
static EnumContourGeometricType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumContourGeometricType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumContourGeometricType POINT
public static final EnumContourGeometricType OPEN_PLANAR
public static final EnumContourGeometricType OPEN_NONPLANAR
public static final EnumContourGeometricType CLOSED_PLANAR
public static EnumContourGeometricType[] values()
for (EnumContourGeometricType c : EnumContourGeometricType.values()) System.out.println(c);
public static EnumContourGeometricType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()