public class DefaultJsonGenerator
A JsonGenerator that can be configured with various JsonGenerator.Options.
If the default options are sufficient consider using the static JsonOutput.toJson
methods.
Modifiers | Name | Description |
---|---|---|
protected static class |
DefaultJsonGenerator.ClosureConverter |
A converter that handles converting a given type using a closure. |
Modifiers | Name | Description |
---|---|---|
protected Set<Converter> |
converters |
|
protected String |
dateFormat |
|
protected Locale |
dateLocale |
|
protected boolean |
disableUnicodeEscaping |
|
protected boolean |
excludeNulls |
|
protected Set<String> |
excludedFieldNames |
|
protected Set<Class<?>> |
excludedFieldTypes |
|
protected TimeZone |
timezone |
Constructor and description |
---|
protected DefaultJsonGenerator
(Options options) |
Type Params | Return Type | Name and description |
---|---|---|
|
protected Converter |
findConverter(Class<?> type) Finds a converter that can handle the given type. |
|
protected Map<?, ?> |
getObjectProperties(Object object) |
|
public boolean |
isExcludingFieldsNamed(String name) {@inheritDoc} |
|
public boolean |
isExcludingValues(Object value) {@inheritDoc} |
|
protected boolean |
shouldExcludeType(Class<?> type) Indicates whether the given type should be excluded from the generated output. |
|
public String |
toJson(Object object) {@inheritDoc} |
|
protected void |
writeArray(Class<?> arrayClass, Object array, CharBuf buffer) Serializes array and writes it into specified buffer. |
|
protected void |
writeCharSequence(CharSequence seq, CharBuf buffer) Serializes any char sequence and writes it into specified buffer. |
|
protected void |
writeDate(Date date, CharBuf buffer) Serializes date and writes it into specified buffer. |
|
protected void |
writeIterator(Iterator<?> iterator, CharBuf buffer) Serializes iterator and writes it into specified buffer. |
|
protected void |
writeMap(Map<?, ?> map, CharBuf buffer) Serializes map and writes it into specified buffer. |
|
protected void |
writeMapEntry(String key, Object value, CharBuf buffer) Serializes a map entry and writes it into specified buffer. |
|
protected void |
writeNumber(Class<?> numberClass, Number value, CharBuf buffer) Serializes Number value and writes it into specified buffer. |
|
protected void |
writeObject(Object object, CharBuf buffer) |
|
protected void |
writeObject(String key, Object object, CharBuf buffer) Serializes object and writes it into specified buffer. |
|
protected void |
writeRaw(CharSequence seq, CharBuf buffer) Serializes any char sequence and writes it into specified buffer without performing any manipulation of the given text. |
Finds a converter that can handle the given type. The first converter
that reports it can handle the type is returned, based on the order in
which the converters were specified. A null
value will be returned
if no suitable converter can be found for the given type.
type
- that this converter can handlenull
if no compatible converters are found for the given type.Indicates whether the given type should be excluded from the generated output.
type
- the type to checktrue
if the given type should not be output, else false
Serializes array and writes it into specified buffer.
Serializes any char sequence and writes it into specified buffer.
Serializes date and writes it into specified buffer.
Serializes iterator and writes it into specified buffer.
Serializes map and writes it into specified buffer.
Serializes a map entry and writes it into specified buffer.
Serializes Number value and writes it into specified buffer.
Serializes object and writes it into specified buffer.
Serializes any char sequence and writes it into specified buffer without performing any manipulation of the given text.
Copyright © 2003-2021 The Apache Software Foundation. All rights reserved.