Package org.nineml.coffeegrinder.parser
Class ParserInput
- java.lang.Object
-
- org.nineml.coffeegrinder.parser.ParserInput
-
public class ParserInput extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
CR
static int
LF
static int
LINE_SEPARATOR
static int
NEL
-
Constructor Summary
Constructors Constructor Description ParserInput(ParserOptions options)
ParserInput(ParserOptions options, boolean usesRegex)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
from(java.lang.String input)
void
from(java.util.Iterator<Token> input)
void
from(Token[] input)
java.lang.String
string()
Token[]
tokens()
-
-
-
Field Detail
-
CR
public static final int CR
- See Also:
- Constant Field Values
-
LF
public static final int LF
- See Also:
- Constant Field Values
-
NEL
public static final int NEL
- See Also:
- Constant Field Values
-
LINE_SEPARATOR
public static final int LINE_SEPARATOR
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ParserInput
public ParserInput(ParserOptions options)
-
ParserInput
public ParserInput(ParserOptions options, boolean usesRegex)
-
-