Uses of Class
org.gridkit.jvmtool.jackson.JsonGenerationException

Packages that use JsonGenerationException
org.gridkit.jvmtool.jackson   
org.gridkit.jvmtool.util.json   
 

Uses of JsonGenerationException in org.gridkit.jvmtool.jackson
 

Methods in org.gridkit.jvmtool.jackson that throw JsonGenerationException
 void WriterBasedGenerator.__writeStartArray()
           
protected  void WriterBasedGenerator._reportError(String msg)
           
protected  void WriterBasedGenerator._verifyPrettyValueWrite(String typeMsg, int status)
           
protected  void WriterBasedGenerator._verifyValueWrite(String typeMsg)
           
protected  void WriterBasedGenerator._writeFieldName(String name, boolean commaBefore)
           
protected  void WriterBasedGenerator._writePPFieldName(String name, boolean commaBefore)
          Specialized version of _writeFieldName, off-lined to keep the "fast path" as simple (and hopefully fast) as possible.
protected  void WriterBasedGenerator._writeSimpleObject(Object value)
          Helper method to try to call appropriate write method for given untyped Object.
 void PrettyPrinter.beforeArrayValues(JsonGenerator jg)
          Method called after array start marker has been output, and right before the first value is to be output.
 void DefaultPrettyPrinter.beforeArrayValues(JsonGenerator jg)
           
 void PrettyPrinter.beforeObjectEntries(JsonGenerator jg)
          Method called after object start marker has been output, and right before the field name of the first entry is to be output.
 void DefaultPrettyPrinter.beforeObjectEntries(JsonGenerator jg)
           
 void JsonGenerator.writeArrayFieldStart(String fieldName)
          Convenience method for outputting a field entry ("member") (that will contain a JSON Array value), and the START_ARRAY marker.
 void PrettyPrinter.writeArrayValueSeparator(JsonGenerator jg)
          Method called after an array value has been completely output, and before another value is to be output.
 void DefaultPrettyPrinter.writeArrayValueSeparator(JsonGenerator jg)
          Method called after an array value has been completely output, and before another value is to be output.
 void WriterBasedGenerator.writeBoolean(boolean state)
           
abstract  void JsonGenerator.writeBoolean(boolean state)
          Method for outputting literal Json boolean value (one of Strings 'true' and 'false').
 void JsonGenerator.writeBooleanField(String fieldName, boolean value)
          Convenience method for outputting a field entry ("member") that has a boolean value.
 void WriterBasedGenerator.writeEndArray()
           
abstract  void JsonGenerator.writeEndArray()
          Method for writing closing marker of a JSON Array value (character ']'; plus possible white space decoration if pretty-printing is enabled).
 void PrettyPrinter.writeEndArray(JsonGenerator jg, int nrOfValues)
          Method called after an Array value has been completely output (minus closing bracket).
 void DefaultPrettyPrinter.writeEndArray(JsonGenerator jg, int nrOfValues)
           
 void WriterBasedGenerator.writeEndObject()
           
abstract  void JsonGenerator.writeEndObject()
          Method for writing closing marker of a JSON Object value (character '}'; plus possible white space decoration if pretty-printing is enabled).
 void PrettyPrinter.writeEndObject(JsonGenerator jg, int nrOfEntries)
          Method called after an Object value has been completely output (minus closing curly bracket).
 void DefaultPrettyPrinter.writeEndObject(JsonGenerator jg, int nrOfEntries)
           
 void WriterBasedGenerator.writeFieldName(String name)
           
abstract  void JsonGenerator.writeFieldName(String name)
          Method for writing a field name (JSON String surrounded by double quotes: syntactically identical to a JSON String value), possibly decorated by white space if pretty-printing is enabled.
 void Indenter.writeIndentation(JsonGenerator jg, int level)
           
 void DefaultPrettyPrinter.FixedSpaceIndenter.writeIndentation(JsonGenerator jg, int level)
           
 void DefaultPrettyPrinter.Lf2SpacesIndenter.writeIndentation(JsonGenerator jg, int level)
           
 void WriterBasedGenerator.writeNull()
           
abstract  void JsonGenerator.writeNull()
          Method for outputting literal Json null value.
 void JsonGenerator.writeNullField(String fieldName)
          Convenience method for outputting a field entry ("member") that has JSON literal value null.
 void WriterBasedGenerator.writeNumber(BigDecimal value)
           
abstract  void JsonGenerator.writeNumber(BigDecimal dec)
          Method for outputting indicate Json numeric value.
 void WriterBasedGenerator.writeNumber(BigInteger value)
           
abstract  void JsonGenerator.writeNumber(BigInteger v)
          Method for outputting given value as Json number.
 void WriterBasedGenerator.writeNumber(double d)
           
abstract  void JsonGenerator.writeNumber(double d)
          Method for outputting indicate Json numeric value.
 void WriterBasedGenerator.writeNumber(float f)
           
abstract  void JsonGenerator.writeNumber(float f)
          Method for outputting indicate Json numeric value.
 void WriterBasedGenerator.writeNumber(int i)
           
abstract  void JsonGenerator.writeNumber(int v)
          Method for outputting given value as Json number.
 void WriterBasedGenerator.writeNumber(long l)
           
abstract  void JsonGenerator.writeNumber(long v)
          Method for outputting given value as Json number.
 void WriterBasedGenerator.writeNumber(String encodedValue)
           
abstract  void JsonGenerator.writeNumber(String encodedValue)
          Write method that can be used for custom numeric types that can not be (easily?) converted to "standard" Java number types.
 void JsonGenerator.writeNumberField(String fieldName, BigDecimal value)
          Convenience method for outputting a field entry ("member") that has the specified numeric value.
 void JsonGenerator.writeNumberField(String fieldName, double value)
          Convenience method for outputting a field entry ("member") that has the specified numeric value.
 void JsonGenerator.writeNumberField(String fieldName, float value)
          Convenience method for outputting a field entry ("member") that has the specified numeric value.
 void JsonGenerator.writeNumberField(String fieldName, int value)
          Convenience method for outputting a field entry ("member") that has the specified numeric value.
 void JsonGenerator.writeNumberField(String fieldName, long value)
          Convenience method for outputting a field entry ("member") that has the specified numeric value.
 void PrettyPrinter.writeObjectEntrySeparator(JsonGenerator jg)
          Method called after an object entry (field:value) has been completely output, and before another value is to be output.
 void DefaultPrettyPrinter.writeObjectEntrySeparator(JsonGenerator jg)
          Method called after an object entry (field:value) has been completely output, and before another value is to be output.
 void JsonGenerator.writeObjectFieldStart(String fieldName)
          Convenience method for outputting a field entry ("member") (that will contain a JSON Object value), and the START_OBJECT marker.
 void PrettyPrinter.writeObjectFieldValueSeparator(JsonGenerator jg)
          Method called after an object field has been output, but before the value is output.
 void DefaultPrettyPrinter.writeObjectFieldValueSeparator(JsonGenerator jg)
          Method called after an object field has been output, but before the value is output.
 void WriterBasedGenerator.writeRaw(char c)
           
abstract  void JsonGenerator.writeRaw(char c)
          Method that will force generator to copy input text verbatim with no modifications (including that no escaping is done and no separators are added even if context [array, object] would otherwise require such).
 void WriterBasedGenerator.writeRaw(char[] text, int offset, int len)
           
abstract  void JsonGenerator.writeRaw(char[] text, int offset, int len)
          Method that will force generator to copy input text verbatim with no modifications (including that no escaping is done and no separators are added even if context [array, object] would otherwise require such).
 void WriterBasedGenerator.writeRaw(String text)
           
abstract  void JsonGenerator.writeRaw(String text)
          Method that will force generator to copy input text verbatim with no modifications (including that no escaping is done and no separators are added even if context [array, object] would otherwise require such).
 void WriterBasedGenerator.writeRaw(String text, int start, int len)
           
abstract  void JsonGenerator.writeRaw(String text, int offset, int len)
          Method that will force generator to copy input text verbatim with no modifications (including that no escaping is done and no separators are added even if context [array, object] would otherwise require such).
 void WriterBasedGenerator.writeRawUTF8String(byte[] text, int offset, int length)
           
abstract  void JsonGenerator.writeRawUTF8String(byte[] text, int offset, int length)
          Method similar to JsonGenerator.writeString(String) but that takes as its input a UTF-8 encoded String that is to be output as-is, without additional escaping (type of which depends on data format; backslashes for JSON).
 void WriterBasedGenerator.writeRawValue(char[] text, int offset, int len)
           
abstract  void JsonGenerator.writeRawValue(char[] text, int offset, int len)
           
 void WriterBasedGenerator.writeRawValue(String text)
           
abstract  void JsonGenerator.writeRawValue(String text)
          Method that will force generator to copy input text verbatim without any modifications, but assuming it must constitute a single legal JSON value (number, string, boolean, null, Array or List).
 void WriterBasedGenerator.writeRawValue(String text, int offset, int len)
           
abstract  void JsonGenerator.writeRawValue(String text, int offset, int len)
           
 void PrettyPrinter.writeRootValueSeparator(JsonGenerator jg)
          Method called after a root-level value has been completely output, and before another value is to be output.
 void DefaultPrettyPrinter.writeRootValueSeparator(JsonGenerator jg)
           
 void WriterBasedGenerator.writeStartArray()
           
abstract  void JsonGenerator.writeStartArray()
          Method for writing starting marker of a JSON Array value (character '['; plus possible white space decoration if pretty-printing is enabled).
 void PrettyPrinter.writeStartArray(JsonGenerator jg)
          Method called when an Array value is to be output, before any member/child values are output.
 void DefaultPrettyPrinter.writeStartArray(JsonGenerator jg)
           
 void WriterBasedGenerator.writeStartObject()
           
abstract  void JsonGenerator.writeStartObject()
          Method for writing starting marker of a JSON Object value (character '{'; plus possible white space decoration if pretty-printing is enabled).
 void PrettyPrinter.writeStartObject(JsonGenerator jg)
          Method called when an Object value is to be output, before any fields are output.
 void DefaultPrettyPrinter.writeStartObject(JsonGenerator jg)
           
 void WriterBasedGenerator.writeString(char[] text, int offset, int len)
           
abstract  void JsonGenerator.writeString(char[] text, int offset, int len)
          Method for outputting a String value.
 void WriterBasedGenerator.writeString(String text)
           
abstract  void JsonGenerator.writeString(String text)
          Method for outputting a String value.
 void WriterBasedGenerator.writeStringField(String fieldName, String value)
           
 void JsonGenerator.writeStringField(String fieldName, String value)
          Convenience method for outputting a field entry ("member") that has a String value.
 void WriterBasedGenerator.writeUTF8String(byte[] text, int offset, int length)
           
abstract  void JsonGenerator.writeUTF8String(byte[] text, int offset, int length)
          Method similar to JsonGenerator.writeString(String) but that takes as its input a UTF-8 encoded String which has not been escaped using whatever escaping scheme data format requires (for JSON that is backslash-escaping for control characters and double-quotes; for other formats something else).
 

Uses of JsonGenerationException in org.gridkit.jvmtool.util.json
 

Methods in org.gridkit.jvmtool.util.json that throw JsonGenerationException
 void SmartJsonWriter.writeArrayFieldStart(String fieldName)
           
 void JsonWriter.writeArrayFieldStart(String fieldName)
           
 void SmartJsonWriter.writeBoolean(boolean state)
           
 void JsonWriter.writeBoolean(boolean state)
           
 void SmartJsonWriter.writeBooleanField(String fieldName, boolean value)
           
 void JsonWriter.writeBooleanField(String fieldName, boolean value)
           
 void SmartJsonWriter.writeEndArray()
           
 void JsonWriter.writeEndArray()
           
 void SmartJsonWriter.writeEndObject()
           
 void JsonWriter.writeEndObject()
           
 void SmartJsonWriter.writeFieldName(String name)
           
 void JsonWriter.writeFieldName(String name)
           
 void SmartJsonWriter.writeNull()
           
 void JsonWriter.writeNull()
           
 void SmartJsonWriter.writeNullField(String fieldName)
           
 void JsonWriter.writeNullField(String fieldName)
           
 void SmartJsonWriter.writeNumber(BigDecimal dec)
           
 void JsonWriter.writeNumber(BigDecimal dec)
           
 void SmartJsonWriter.writeNumber(BigInteger v)
           
 void JsonWriter.writeNumber(BigInteger v)
           
 void SmartJsonWriter.writeNumber(double d)
           
 void JsonWriter.writeNumber(double d)
           
 void SmartJsonWriter.writeNumber(float f)
           
 void JsonWriter.writeNumber(float f)
           
 void SmartJsonWriter.writeNumber(int v)
           
 void JsonWriter.writeNumber(int v)
           
 void SmartJsonWriter.writeNumber(long v)
           
 void JsonWriter.writeNumber(long v)
           
 void SmartJsonWriter.writeNumber(String encodedValue)
           
 void JsonWriter.writeNumber(String encodedValue)
           
 void SmartJsonWriter.writeNumberField(String fieldName, BigDecimal value)
           
 void JsonWriter.writeNumberField(String fieldName, BigDecimal value)
           
 void SmartJsonWriter.writeNumberField(String fieldName, double value)
           
 void JsonWriter.writeNumberField(String fieldName, double value)
           
 void SmartJsonWriter.writeNumberField(String fieldName, float value)
           
 void JsonWriter.writeNumberField(String fieldName, float value)
           
 void SmartJsonWriter.writeNumberField(String fieldName, int value)
           
 void JsonWriter.writeNumberField(String fieldName, int value)
           
 void SmartJsonWriter.writeNumberField(String fieldName, long value)
           
 void JsonWriter.writeNumberField(String fieldName, long value)
           
 void SmartJsonWriter.writeObjectFieldStart(String fieldName)
           
 void JsonWriter.writeObjectFieldStart(String fieldName)
           
 void SmartJsonWriter.writeRaw(char c)
           
 void JsonWriter.writeRaw(char c)
           
 void SmartJsonWriter.writeRaw(char[] text, int offset, int len)
           
 void JsonWriter.writeRaw(char[] text, int offset, int len)
           
 void SmartJsonWriter.writeRaw(String text)
           
 void JsonWriter.writeRaw(String text)
           
 void SmartJsonWriter.writeRaw(String text, int offset, int len)
           
 void JsonWriter.writeRaw(String text, int offset, int len)
           
 void SmartJsonWriter.writeRawUTF8String(byte[] text, int offset, int length)
           
 void JsonWriter.writeRawUTF8String(byte[] text, int offset, int length)
           
 void SmartJsonWriter.writeRawValue(char[] text, int offset, int len)
           
 void JsonWriter.writeRawValue(char[] text, int offset, int len)
           
 void SmartJsonWriter.writeRawValue(String text)
           
 void JsonWriter.writeRawValue(String text)
           
 void SmartJsonWriter.writeRawValue(String text, int offset, int len)
           
 void JsonWriter.writeRawValue(String text, int offset, int len)
           
 void SmartJsonWriter.writeStartArray()
           
 void JsonWriter.writeStartArray()
           
 void SmartJsonWriter.writeStartObject()
           
 void JsonWriter.writeStartObject()
           
 void SmartJsonWriter.writeString(char[] text, int offset, int len)
           
 void JsonWriter.writeString(char[] text, int offset, int len)
           
 void SmartJsonWriter.writeString(String text)
           
 void JsonWriter.writeString(String text)
           
 void SmartJsonWriter.writeStringField(String fieldName, String value)
           
 void JsonWriter.writeStringField(String fieldName, String value)
           
 void SmartJsonWriter.writeUTF8String(byte[] text, int offset, int length)
           
 void JsonWriter.writeUTF8String(byte[] text, int offset, int length)
           
 



Copyright © 2019. All Rights Reserved.