public enum ParsePrecedence extends Enum<ParsePrecedence>
IInputHandler
processing.IInputHandler.getPrecedence()
Enum Constant and Description |
---|
AFTER_CHILDREN
The data is parsed after any non-data child content, but before parsing the owner GraphML element is finished.
|
AFTER_OWNER
The data is parsed directly after parsing the owner GraphML element is finished.
|
BEFORE_CHILDREN
The data is parsed after its owner GraphML element, but before any non-data child content.
|
BEFORE_OWNER
The data is parsed before its owner GraphML element.
|
DEFAULT
Default parse priority.
|
FIRST
The data is parsed as early as possible.
|
LAST
The data is parsed as late as possible.
|
Modifier and Type | Method and Description |
---|---|
static ParsePrecedence |
fromOrdinal(int ordinal) |
int |
value() |
static ParsePrecedence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParsePrecedence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParsePrecedence AFTER_CHILDREN
public static final ParsePrecedence AFTER_OWNER
public static final ParsePrecedence BEFORE_CHILDREN
public static final ParsePrecedence BEFORE_OWNER
public static final ParsePrecedence DEFAULT
public static final ParsePrecedence FIRST
public static final ParsePrecedence LAST
public static final ParsePrecedence fromOrdinal(int ordinal)
public int value()
public static ParsePrecedence valueOf(String name)
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.public static ParsePrecedence[] values()
for (ParsePrecedence c : ParsePrecedence.values()) System.out.println(c);