public static enum Clean2DAction.Type extends java.lang.Enum<Clean2DAction.Type>
Enum Constant and Description |
---|
FULL
Full clean
|
PARTIAL
Partial clean
|
REMOVEZCOORDINATE
Convert 3D to 2D
|
TEMPLATEBASED
Template based clean
|
Modifier and Type | Method and Description |
---|---|
static Clean2DAction.Type |
parse(java.lang.String type)
Parses the type of the clean action
|
java.lang.String |
toString() |
static Clean2DAction.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Clean2DAction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Clean2DAction.Type PARTIAL
public static final Clean2DAction.Type FULL
public static final Clean2DAction.Type TEMPLATEBASED
public static final Clean2DAction.Type REMOVEZCOORDINATE
public static Clean2DAction.Type[] values()
for (Clean2DAction.Type c : Clean2DAction.Type.values()) System.out.println(c);
public static Clean2DAction.Type 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 toString()
toString
in class java.lang.Enum<Clean2DAction.Type>
public static Clean2DAction.Type parse(java.lang.String type)
type
- the string representation of the type to be parsed