public enum ModuleControl extends Enum<ModuleControl>
Enum Constant and Description |
---|
CONTINUE
CONTINUE tells the parser that module did not parse the line or the parser
should reprocess the same line with next module
|
REPARSE
REPARSE tells the parser that modules parsed the line and processing of this line
should be stopped but lines produced in output should be reparsed
|
STOP
STOP tells the parser that modules parsed the line and no further
processing should be done
|
Modifier and Type | Method and Description |
---|---|
static ModuleControl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModuleControl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleControl CONTINUE
public static final ModuleControl STOP
public static final ModuleControl REPARSE
public static ModuleControl[] values()
for (ModuleControl c : ModuleControl.values()) System.out.println(c);
public static ModuleControl 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 © 2013. All Rights Reserved.