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