public class JacksonArrayWrapperGenerator
extends com.fasterxml.jackson.core.JsonGenerator
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
copyCurrentEvent(com.fasterxml.jackson.core.JsonParser parser) |
void |
copyCurrentStructure(com.fasterxml.jackson.core.JsonParser parser) |
static com.fasterxml.jackson.core.JsonGenerator |
createArrayWrapperGenerator(com.fasterxml.jackson.core.JsonGenerator g) |
static com.fasterxml.jackson.core.JsonGenerator |
createArrayWrapperGenerator(com.fasterxml.jackson.core.JsonGenerator g,
int arrayDepth) |
com.fasterxml.jackson.core.JsonGenerator |
disable(com.fasterxml.jackson.core.JsonGenerator.Feature feature) |
void |
disableFeature(com.fasterxml.jackson.core.JsonGenerator.Feature feature)
Deprecated.
|
com.fasterxml.jackson.core.JsonGenerator |
enable(com.fasterxml.jackson.core.JsonGenerator.Feature feature) |
void |
enableFeature(com.fasterxml.jackson.core.JsonGenerator.Feature feature)
Deprecated.
|
void |
flush() |
com.fasterxml.jackson.core.ObjectCodec |
getCodec() |
int |
getFeatureMask() |
com.fasterxml.jackson.core.JsonStreamContext |
getOutputContext() |
boolean |
isClosed() |
boolean |
isEnabled(com.fasterxml.jackson.core.JsonGenerator.Feature f) |
boolean |
isFeatureEnabled(com.fasterxml.jackson.core.JsonGenerator.Feature feature)
Deprecated.
|
com.fasterxml.jackson.core.JsonGenerator |
setCodec(com.fasterxml.jackson.core.ObjectCodec codec) |
void |
setFeature(com.fasterxml.jackson.core.JsonGenerator.Feature feature,
boolean enabled)
Deprecated.
|
com.fasterxml.jackson.core.JsonGenerator |
setFeatureMask(int i) |
com.fasterxml.jackson.core.JsonGenerator |
useDefaultPrettyPrinter() |
com.fasterxml.jackson.core.Version |
version() |
void |
writeBinary(com.fasterxml.jackson.core.Base64Variant variant,
byte[] bytes,
int start,
int count) |
int |
writeBinary(com.fasterxml.jackson.core.Base64Variant base64Variant,
InputStream inputStream,
int i) |
void |
writeBoolean(boolean b) |
void |
writeEndArray() |
void |
writeEndObject() |
void |
writeFieldName(com.fasterxml.jackson.core.SerializableString serializableString) |
void |
writeFieldName(String name) |
void |
writeNull() |
void |
writeNumber(BigDecimal bd) |
void |
writeNumber(BigInteger number) |
void |
writeNumber(double d) |
void |
writeNumber(float f) |
void |
writeNumber(int i) |
void |
writeNumber(long l) |
void |
writeNumber(String number) |
void |
writeObject(Object o) |
void |
writeRaw(char c) |
void |
writeRaw(char[] raw,
int start,
int count) |
void |
writeRaw(String raw) |
void |
writeRaw(String raw,
int start,
int length) |
void |
writeRawUTF8String(byte[] bytes,
int start,
int length) |
void |
writeRawValue(char[] rawChars,
int startIndex,
int length) |
void |
writeRawValue(String rawString) |
void |
writeRawValue(String rawString,
int startIndex,
int length) |
void |
writeStartArray() |
void |
writeStartObject() |
void |
writeString(char[] text,
int start,
int length) |
void |
writeString(com.fasterxml.jackson.core.SerializableString serializableString) |
void |
writeString(String s) |
void |
writeTree(com.fasterxml.jackson.core.TreeNode node) |
void |
writeUTF8String(byte[] bytes,
int start,
int length) |
_copyCurrentContents, _reportError, _reportUnsupportedOperation, _throwInternal, _verifyOffsets, _writeSimpleObject, assignCurrentValue, canOmitFields, canUseSchema, canWriteBinaryNatively, canWriteFormattedNumbers, canWriteObjectId, canWriteTypeId, configure, currentValue, getCharacterEscapes, getCurrentValue, getFormatFeatures, getHighestEscapedChar, getOutputBuffered, getOutputTarget, getPrettyPrinter, getSchema, getWriteCapabilities, isEnabled, overrideFormatFeatures, overrideStdFeatures, setCharacterEscapes, setCurrentValue, setHighestNonEscapedChar, setPrettyPrinter, setRootValueSeparator, setSchema, writeArray, writeArray, writeArray, writeArray, writeArrayFieldStart, writeBinary, writeBinary, writeBinary, writeBinaryField, writeBooleanField, writeEmbeddedObject, writeFieldId, writeNullField, writeNumber, writeNumber, writeNumberField, writeNumberField, writeNumberField, writeNumberField, writeNumberField, writeNumberField, writeNumberField, writeObjectField, writeObjectFieldStart, writeObjectId, writeObjectRef, writeOmittedField, writePOJO, writePOJOField, writeRaw, writeRawValue, writeStartArray, writeStartArray, writeStartArray, writeStartObject, writeStartObject, writeString, writeStringField, writeTypeId, writeTypePrefix, writeTypeSuffixpublic static com.fasterxml.jackson.core.JsonGenerator createArrayWrapperGenerator(com.fasterxml.jackson.core.JsonGenerator g)
public static com.fasterxml.jackson.core.JsonGenerator createArrayWrapperGenerator(com.fasterxml.jackson.core.JsonGenerator g,
int arrayDepth)
@Deprecated public void enableFeature(com.fasterxml.jackson.core.JsonGenerator.Feature feature)
public com.fasterxml.jackson.core.JsonGenerator enable(com.fasterxml.jackson.core.JsonGenerator.Feature feature)
enable in class com.fasterxml.jackson.core.JsonGenerator@Deprecated public void disableFeature(com.fasterxml.jackson.core.JsonGenerator.Feature feature)
public com.fasterxml.jackson.core.JsonGenerator disable(com.fasterxml.jackson.core.JsonGenerator.Feature feature)
disable in class com.fasterxml.jackson.core.JsonGenerator@Deprecated public void setFeature(com.fasterxml.jackson.core.JsonGenerator.Feature feature, boolean enabled)
@Deprecated public boolean isFeatureEnabled(com.fasterxml.jackson.core.JsonGenerator.Feature feature)
public boolean isEnabled(com.fasterxml.jackson.core.JsonGenerator.Feature f)
isEnabled in class com.fasterxml.jackson.core.JsonGeneratorpublic int getFeatureMask()
getFeatureMask in class com.fasterxml.jackson.core.JsonGeneratorpublic com.fasterxml.jackson.core.JsonGenerator setFeatureMask(int i)
setFeatureMask in class com.fasterxml.jackson.core.JsonGeneratorpublic com.fasterxml.jackson.core.JsonGenerator useDefaultPrettyPrinter()
useDefaultPrettyPrinter in class com.fasterxml.jackson.core.JsonGeneratorpublic com.fasterxml.jackson.core.JsonGenerator setCodec(com.fasterxml.jackson.core.ObjectCodec codec)
setCodec in class com.fasterxml.jackson.core.JsonGeneratorpublic com.fasterxml.jackson.core.ObjectCodec getCodec()
getCodec in class com.fasterxml.jackson.core.JsonGeneratorpublic com.fasterxml.jackson.core.Version version()
version in interface com.fasterxml.jackson.core.Versionedversion in class com.fasterxml.jackson.core.JsonGeneratorpublic void writeRawValue(String rawString) throws IOException, com.fasterxml.jackson.core.JsonGenerationException
writeRawValue in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeRawValue(String rawString, int startIndex, int length) throws IOException, com.fasterxml.jackson.core.JsonGenerationException
writeRawValue in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeRawValue(char[] rawChars,
int startIndex,
int length)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeRawValue in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeNumber(BigInteger number) throws IOException, com.fasterxml.jackson.core.JsonGenerationException
writeNumber in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeObject(Object o) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
writeObject in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonProcessingExceptionpublic void writeTree(com.fasterxml.jackson.core.TreeNode node)
throws IOException,
com.fasterxml.jackson.core.JsonProcessingException
writeTree in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonProcessingExceptionpublic boolean isClosed()
isClosed in class com.fasterxml.jackson.core.JsonGeneratorpublic com.fasterxml.jackson.core.JsonStreamContext getOutputContext()
getOutputContext in class com.fasterxml.jackson.core.JsonGeneratorpublic void writeStartArray()
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeStartArray in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeEndArray()
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeEndArray in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeStartObject()
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeStartObject in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeEndObject()
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeEndObject in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeFieldName(String name) throws IOException, com.fasterxml.jackson.core.JsonGenerationException
writeFieldName in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeFieldName(com.fasterxml.jackson.core.SerializableString serializableString)
throws IOException
writeFieldName in class com.fasterxml.jackson.core.JsonGeneratorIOExceptionpublic void writeString(String s) throws IOException, com.fasterxml.jackson.core.JsonGenerationException
writeString in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeString(char[] text,
int start,
int length)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeString in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeString(com.fasterxml.jackson.core.SerializableString serializableString)
throws IOException
writeString in class com.fasterxml.jackson.core.JsonGeneratorIOExceptionpublic void writeRawUTF8String(byte[] bytes,
int start,
int length)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeRawUTF8String in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeUTF8String(byte[] bytes,
int start,
int length)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeUTF8String in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeRaw(String raw) throws IOException, com.fasterxml.jackson.core.JsonGenerationException
writeRaw in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeRaw(String raw, int start, int length) throws IOException, com.fasterxml.jackson.core.JsonGenerationException
writeRaw in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeRaw(char[] raw,
int start,
int count)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeRaw in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeRaw(char c)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeRaw in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeBinary(com.fasterxml.jackson.core.Base64Variant variant,
byte[] bytes,
int start,
int count)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeBinary in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic int writeBinary(com.fasterxml.jackson.core.Base64Variant base64Variant,
InputStream inputStream,
int i)
throws IOException
writeBinary in class com.fasterxml.jackson.core.JsonGeneratorIOExceptionpublic void writeNumber(int i)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeNumber in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeNumber(long l)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeNumber in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeNumber(double d)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeNumber in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeNumber(float f)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeNumber in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeNumber(BigDecimal bd) throws IOException, com.fasterxml.jackson.core.JsonGenerationException
writeNumber in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeNumber(String number) throws IOException, com.fasterxml.jackson.core.JsonGenerationException, UnsupportedOperationException
writeNumber in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionUnsupportedOperationExceptionpublic void writeBoolean(boolean b)
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeBoolean in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void writeNull()
throws IOException,
com.fasterxml.jackson.core.JsonGenerationException
writeNull in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonGenerationExceptionpublic void copyCurrentEvent(com.fasterxml.jackson.core.JsonParser parser)
throws IOException,
com.fasterxml.jackson.core.JsonProcessingException
copyCurrentEvent in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonProcessingExceptionpublic void copyCurrentStructure(com.fasterxml.jackson.core.JsonParser parser)
throws IOException,
com.fasterxml.jackson.core.JsonProcessingException
copyCurrentStructure in class com.fasterxml.jackson.core.JsonGeneratorIOExceptioncom.fasterxml.jackson.core.JsonProcessingExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in class com.fasterxml.jackson.core.JsonGeneratorIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class com.fasterxml.jackson.core.JsonGeneratorIOExceptionCopyright © 2022. All rights reserved.