JSON
Version 1.0

Uses of Class
org.codehaus.jackson.JsonGenerationException

Packages that use JsonGenerationException
org.codehaus.jackson   
org.codehaus.jackson.impl   
org.codehaus.jackson.map   
org.codehaus.jackson.map.impl   
 

Uses of JsonGenerationException in org.codehaus.jackson
 

Methods in org.codehaus.jackson that throw JsonGenerationException
 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 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.
protected abstract  void JsonGenerator.doWriteEndObject()
           
protected abstract  void JsonGenerator.doWriteFieldName(String name, boolean commaBefore)
           
 void PrettyPrinter.writeArrayValueSeparator(JsonGenerator jg)
          Method called after an array value has been completely output, and before another value is to be output.
abstract  void JsonGenerator.writeBinary(byte[] data, int offset, int len)
          Method that will output given chunk of binary data as base64 encoded, as a complete String value (surrounded by double quotes).
abstract  void JsonGenerator.writeBoolean(boolean state)
           
abstract  void JsonGenerator.writeEndArray()
           
 void PrettyPrinter.writeEndArray(JsonGenerator jg, int nrOfValues)
          Method called after an Array value has been completely output (minus closing bracket).
abstract  void JsonGenerator.writeEndObject()
           
 void PrettyPrinter.writeEndObject(JsonGenerator jg, int nrOfEntries)
          Method called after an Object value has been completely output (minus closing curly bracket).
abstract  void JsonGenerator.writeFieldName(String name)
           
abstract  void JsonGenerator.writeNull()
           
abstract  void JsonGenerator.writeNumber(BigDecimal dec)
           
abstract  void JsonGenerator.writeNumber(double d)
           
abstract  void JsonGenerator.writeNumber(float f)
           
abstract  void JsonGenerator.writeNumber(int i)
           
abstract  void JsonGenerator.writeNumber(long l)
           
 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 PrettyPrinter.writeObjectFieldValueSeparator(JsonGenerator jg)
          Method called after an object field has been output, but before the value is output.
abstract  void JsonGenerator.writeRaw(char c)
           
abstract  void JsonGenerator.writeRaw(char[] text, int offset, int len)
           
abstract  void JsonGenerator.writeRaw(String text)
          Fallback method which can be used to make generator copy input text verbatim with no modifications
abstract  void JsonGenerator.writeRaw(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.
abstract  void JsonGenerator.writeStartArray()
           
 void PrettyPrinter.writeStartArray(JsonGenerator jg)
          Method called when an Array value is to be output, before any member/child values are output.
abstract  void JsonGenerator.writeStartObject()
           
 void PrettyPrinter.writeStartObject(JsonGenerator jg)
          Method called when an Object value is to be output, before any fields are output.
abstract  void JsonGenerator.writeString(char[] text, int offset, int len)
           
abstract  void JsonGenerator.writeString(String text)
           
 

Uses of JsonGenerationException in org.codehaus.jackson.impl
 

Methods in org.codehaus.jackson.impl that throw JsonGenerationException
 void DefaultPrettyPrinter.beforeArrayValues(JsonGenerator jg)
           
 void DefaultPrettyPrinter.beforeObjectEntries(JsonGenerator jg)
           
protected abstract  void JsonGeneratorBase.doWriteEndArray()
           
protected  void WriterBasedGenerator.doWriteEndArray()
           
protected abstract  void JsonGeneratorBase.doWriteEndObject()
           
protected  void WriterBasedGenerator.doWriteEndObject()
           
abstract  void JsonGeneratorBase.doWriteFieldName(String name, boolean commaBefore)
           
 void WriterBasedGenerator.doWriteFieldName(String name, boolean commaBefore)
           
protected abstract  void JsonGeneratorBase.doWriteStartArray()
           
protected  void WriterBasedGenerator.doWriteStartArray()
           
protected abstract  void JsonGeneratorBase.doWriteStartObject()
           
protected  void WriterBasedGenerator.doWriteStartObject()
           
protected  void JsonGeneratorBase.reportError(String msg)
           
protected abstract  void JsonGeneratorBase.verifyValueWrite(String typeMsg)
           
protected  void WriterBasedGenerator.verifyValueWrite(String typeMsg)
           
 void DefaultPrettyPrinter.writeArrayValueSeparator(JsonGenerator jg)
          Method called after an array value has been completely output, and before another value is to be output.
abstract  void JsonGeneratorBase.writeBinary(byte[] data, int offset, int len)
           
 void WriterBasedGenerator.writeBinary(byte[] data, int offset, int len)
           
abstract  void JsonGeneratorBase.writeBoolean(boolean state)
           
 void WriterBasedGenerator.writeBoolean(boolean state)
           
 void JsonGeneratorBase.writeEndArray()
           
 void DefaultPrettyPrinter.writeEndArray(JsonGenerator jg, int nrOfValues)
           
 void JsonGeneratorBase.writeEndObject()
           
 void DefaultPrettyPrinter.writeEndObject(JsonGenerator jg, int nrOfEntries)
           
 void JsonGeneratorBase.writeFieldName(String name)
           
 void DefaultPrettyPrinter.FixedSpaceIndenter.writeIndentation(JsonGenerator jg, int level)
           
 void DefaultPrettyPrinter.Lf2SpacesIndenter.writeIndentation(JsonGenerator jg, int level)
           
 void Indenter.writeIndentation(JsonGenerator jg, int level)
           
abstract  void JsonGeneratorBase.writeNull()
           
 void WriterBasedGenerator.writeNull()
           
abstract  void JsonGeneratorBase.writeNumber(BigDecimal dec)
           
 void WriterBasedGenerator.writeNumber(BigDecimal dec)
           
abstract  void JsonGeneratorBase.writeNumber(double d)
           
 void WriterBasedGenerator.writeNumber(double d)
           
abstract  void JsonGeneratorBase.writeNumber(float f)
           
 void WriterBasedGenerator.writeNumber(float f)
           
abstract  void JsonGeneratorBase.writeNumber(int i)
           
 void WriterBasedGenerator.writeNumber(int i)
           
abstract  void JsonGeneratorBase.writeNumber(long l)
           
 void WriterBasedGenerator.writeNumber(long l)
           
 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 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 JsonGeneratorBase.writeRaw(char[] text, int offset, int len)
           
 void WriterBasedGenerator.writeRaw(char[] text, int offset, int len)
           
abstract  void JsonGeneratorBase.writeRaw(String text)
           
 void WriterBasedGenerator.writeRaw(String text)
           
 void WriterBasedGenerator.writeRaw(String text, int start, int len)
           
 void DefaultPrettyPrinter.writeRootValueSeparator(JsonGenerator jg)
           
 void JsonGeneratorBase.writeStartArray()
           
 void DefaultPrettyPrinter.writeStartArray(JsonGenerator jg)
           
 void JsonGeneratorBase.writeStartObject()
           
 void DefaultPrettyPrinter.writeStartObject(JsonGenerator jg)
           
abstract  void JsonGeneratorBase.writeString(char[] text, int offset, int len)
           
 void WriterBasedGenerator.writeString(char[] text, int offset, int len)
           
abstract  void JsonGeneratorBase.writeString(String text)
           
 void WriterBasedGenerator.writeString(String text)
           
 

Uses of JsonGenerationException in org.codehaus.jackson.map
 

Methods in org.codehaus.jackson.map that throw JsonGenerationException
abstract  void JsonNode.writeTo(JsonGenerator jg)
          Method that can be called to serialize this node and all of its descendants using specified JSON generator.
 

Uses of JsonGenerationException in org.codehaus.jackson.map.impl
 

Methods in org.codehaus.jackson.map.impl that throw JsonGenerationException
 void ArrayNode.writeTo(JsonGenerator jg)
           
 void BooleanNode.writeTo(JsonGenerator jg)
           
 void DecimalNode.writeTo(JsonGenerator jg)
           
 void DoubleNode.writeTo(JsonGenerator jg)
           
 void IntNode.writeTo(JsonGenerator jg)
           
 void LongNode.writeTo(JsonGenerator jg)
           
 void MissingNode.writeTo(JsonGenerator jg)
           
 void NullNode.writeTo(JsonGenerator jg)
           
 void ObjectNode.writeTo(JsonGenerator jg)
           
 void TextNode.writeTo(JsonGenerator jg)
           
 


JSON
Version 1.0

Apache License, Version 2.0