[intro]

Parsers

Parsers is a set of parsers used both to parse and format different data types.


Constants Click here for the constant details
Default NumberParser constants
JST_DEFAULT_CURRENCY_INSIDE Default value for property: currencyInside
JST_DEFAULT_CURRENCY_SYMBOL Default value for property: currencySymbol
JST_DEFAULT_DECIMAL_DIGITS Default value for property: decimalDigits
JST_DEFAULT_DECIMAL_SEPARATOR Default value for property: decimalSeparator
JST_DEFAULT_GROUP_SEPARATOR Default value for property: groupSeparator
JST_DEFAULT_GROUP_SIZE Default value for property: groupSize
JST_DEFAULT_NEGATIVE_PARENTHESIS Default value for property: negativeParenthesis
JST_DEFAULT_SPACE_AFTER_CURRENCY Default value for property: spaceAfterCurrency
JST_DEFAULT_USE_CURRENCY Default value for property: useCurrency
JST_DEFAULT_USE_GROUPING Default value for property: useGrouping
Default DateParser constants
JST_DEFAULT_DATE_MASK Default value for property: mask
JST_DEFAULT_ENFORCE_LENGTH Default value for property: enforceLength
Default BooleanParser constants
JST_DEFAULT_FALSE_VALUE Default value for property: falseValue
JST_DEFAULT_TRUE_VALUE Default value for property: trueValue

Classes
BooleanParser A parser for Boolean values
CustomParser A parser that uses custom functions to parse / format data
DateParser A parser for Date values
EscapeParser A parser used to escape / unescape characters from a String, usind the escapeCharacters() / unescapeCharacters() functions
MapParser A parser that uses a Map instance to parse / format values
NumberParser A parser for numeric values
Parser This is a common parser, intented to be subclassed by other parsers
StringParser A convenience parser for String values
WrapperParser A parser that wraps another parser, adding functionality through uses custom functions