Package org.jparsec
Class TokenizerMaps
java.lang.Object
org.jparsec.TokenizerMaps
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final Function
<String, Tokens.Fragment> AFunction
that 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> AFunction
that recognizes a scientific notation and tokenizes to aTokens.ScientificNotation
.AFunction
that 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.Fragment
object tagged withtag
.
-
Field Details
-
RESERVED_FRAGMENT
-
IDENTIFIER_FRAGMENT
-
INTEGER_FRAGMENT
-
DECIMAL_FRAGMENT
-
SCIENTIFIC_NOTATION
AFunction
that recognizes a scientific notation and tokenizes to aTokens.ScientificNotation
. -
DOUBLE_QUOTE_STRING
AFunction
that recognizes a string literal quoted by double quote character ("
) and tokenizes to aString
. The backslash character (\
) is interpreted as escape. -
SINGLE_QUOTE_STRING
AFunction
that 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.Fragment
object tagged withtag
.
-