public static enum ParsingContext.Position extends java.lang.Enum<ParsingContext.Position>
Modifier and Type | Method and Description |
---|---|
static ParsingContext.Position |
of(int index,
int lastIndex)
Return the position instance for a module appearing at
index inside a stream made of [0..lastIndex]
(inclusive). |
static ParsingContext.Position |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParsingContext.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParsingContext.Position start
public static final ParsingContext.Position middle
public static final ParsingContext.Position end
public static ParsingContext.Position[] values()
for (ParsingContext.Position c : ParsingContext.Position.values()) System.out.println(c);
public static ParsingContext.Position 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 static ParsingContext.Position of(int index, int lastIndex)
index
inside a stream made of [0..lastIndex]
(inclusive).