Package org.apache.groovy.json.internal
Class JsonFastParser
- java.lang.Object
- 
- org.apache.groovy.json.internal.BaseJsonParser
- 
- org.apache.groovy.json.internal.JsonParserCharArray
- 
- org.apache.groovy.json.internal.JsonFastParser
 
 
 
- 
- All Implemented Interfaces:
- JsonParser
 
 public class JsonFastParser extends JsonParserCharArray This works in index overlay mode or chop mode. Chop mode reduces possibility of memory leak but causes a few more buffer copies as it chops up the buffer.
- 
- 
Field Summary- 
Fields inherited from class org.apache.groovy.json.internal.JsonParserCharArray__currentChar, __index, charArray, FALSE, NULL, TRUE
 - 
Fields inherited from class org.apache.groovy.json.internal.BaseJsonParserALPHA_0, ALPHA_1, ALPHA_2, ALPHA_3, ALPHA_4, ALPHA_5, ALPHA_6, ALPHA_7, ALPHA_8, ALPHA_9, bufSize, charset, CLOSED_BRACKET, CLOSED_CURLY, COLON, COMMA, DECIMAL_POINT, DOUBLE_QUOTE, ESCAPE, internedKeysCache, internKeys, LETTER_BIG_E, LETTER_E, MINUS, PLUS
 
- 
 - 
Constructor SummaryConstructors Constructor Description JsonFastParser()JsonFastParser(boolean useValues)JsonFastParser(boolean useValues, boolean chop)JsonFastParser(boolean useValues, boolean chop, boolean lazyChop)JsonFastParser(boolean useValues, boolean chop, boolean lazyChop, boolean checkDates)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.ObjectdecodeFromChars(char[] cs)protected ValuedecodeJsonObjectLazyFinalParse()protected ValuedecodeValue()- 
Methods inherited from class org.apache.groovy.json.internal.JsonParserCharArraycomplain, currentChar, decodeFalse, decodeJsonArray, decodeJsonObject, decodeNull, decodeTrue, exceptionDetails, hasCurrent, hasMore, nextChar, parse, skipWhiteSpace
 - 
Methods inherited from class org.apache.groovy.json.internal.BaseJsonParsercharDescription, findEndQuote, hasEscapeChar, isDecimalChar, isDelimiter, isDoubleQuote, isEscape, isNumberDigit, parse, parse, parse, parse, parse, parse, parse, parse, setCharset
 
- 
 
- 
- 
- 
Constructor Detail- 
JsonFastParserpublic JsonFastParser() 
 - 
JsonFastParserpublic JsonFastParser(boolean useValues) 
 - 
JsonFastParserpublic JsonFastParser(boolean useValues, boolean chop)
 - 
JsonFastParserpublic JsonFastParser(boolean useValues, boolean chop, boolean lazyChop)
 - 
JsonFastParserpublic JsonFastParser(boolean useValues, boolean chop, boolean lazyChop, boolean checkDates)
 
- 
 - 
Method Detail- 
decodeJsonObjectLazyFinalParseprotected final Value decodeJsonObjectLazyFinalParse() 
 - 
decodeValueprotected Value decodeValue() - Overrides:
- decodeValuein class- JsonParserCharArray
 
 - 
decodeFromCharsprotected final java.lang.Object decodeFromChars(char[] cs) - Overrides:
- decodeFromCharsin class- JsonParserCharArray
 
 
- 
 
-