Package org.jparsec
Class TokenizerMaps
java.lang.Object
org.jparsec.TokenizerMaps
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final Function<String, Tokens.Fragment> AFunctionthat recognizes a string literal quoted by double quote character (") and tokenizes to aString.(package private) static final Function<String, Tokens.Fragment> (package private) static final Function<String, Tokens.Fragment> (package private) static final Function<String, Tokens.Fragment> (package private) static final Function<String, Tokens.ScientificNotation> AFunctionthat recognizes a scientific notation and tokenizes to aTokens.ScientificNotation.AFunctionthat tokenizes a SQL style string literal quoted by single quote character (') and tokenizes to aString. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) static Function<String, Tokens.Fragment> Returns a map that tokenizes the recognized character range to aTokens.Fragmentobject tagged withtag.
-
Field Details
-
RESERVED_FRAGMENT
-
IDENTIFIER_FRAGMENT
-
INTEGER_FRAGMENT
-
DECIMAL_FRAGMENT
-
SCIENTIFIC_NOTATION
AFunctionthat recognizes a scientific notation and tokenizes to aTokens.ScientificNotation. -
DOUBLE_QUOTE_STRING
AFunctionthat recognizes a string literal quoted by double quote character (") and tokenizes to aString. The backslash character (\) is interpreted as escape. -
SINGLE_QUOTE_STRING
AFunctionthat tokenizes a SQL style string literal quoted by single quote character (') and tokenizes to aString. Two adjacent single quote characters ('') are escaped as one single quote character. -
SINGLE_QUOTE_CHAR
-
DEC_AS_LONG
-
OCT_AS_LONG
-
HEX_AS_LONG
-
-
Constructor Details
-
TokenizerMaps
TokenizerMaps()
-
-
Method Details
-
fragment
Returns a map that tokenizes the recognized character range to aTokens.Fragmentobject tagged withtag.
-