Package groovy.json
Class DefaultJsonGenerator
java.lang.Object
groovy.json.DefaultJsonGenerator
- All Implemented Interfaces:
JsonGenerator
A JsonGenerator that can be configured with various
JsonGenerator.Options
.
If the default options are sufficient consider using the static JsonOutput.toJson
methods.- Since:
- 2.5.0
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected static class
A converter that handles converting a given type using a closure.Nested classes/interfaces inherited from interface groovy.json.JsonGenerator
JsonGenerator.Converter, JsonGenerator.Options
-
Field Summary
Modifier and TypeFieldDescriptionprotected final Set<JsonGenerator.Converter>
protected final String
protected final Locale
protected final boolean
protected final boolean
protected final TimeZone
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected JsonGenerator.Converter
findConverter
(Class<?> type) Finds a converter that can handle the given type.protected Map<?,
?> getObjectProperties
(Object object) boolean
isExcludingFieldsNamed
(String name) Indicates whether this JsonGenerator is configured to exclude fields by the given name.boolean
isExcludingValues
(Object value) Indicates whether this JsonGenerator is configured to exclude values of the given object (may benull
).protected boolean
shouldExcludeType
(Class<?> type) Indicates whether the given type should be excluded from the generated output.Converts an object to its JSON representation.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
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
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.
-
Field Details
-
excludeNulls
protected final boolean excludeNulls -
disableUnicodeEscaping
protected final boolean disableUnicodeEscaping -
dateFormat
-
dateLocale
-
timezone
-
converters
-
excludedFieldNames
-
excludedFieldTypes
-
-
Constructor Details
-
DefaultJsonGenerator
-
-
Method Details
-
toJson
Converts an object to its JSON representation.- Specified by:
toJson
in interfaceJsonGenerator
- Parameters:
object
- to convert to JSON- Returns:
- JSON
-
isExcludingFieldsNamed
Indicates whether this JsonGenerator is configured to exclude fields by the given name.- Specified by:
isExcludingFieldsNamed
in interfaceJsonGenerator
- Parameters:
name
- of the field- Returns:
- true if that field is being excluded, else false
-
isExcludingValues
Indicates whether this JsonGenerator is configured to exclude values of the given object (may benull
).- Specified by:
isExcludingValues
in interfaceJsonGenerator
- Parameters:
value
- an instance of an object- Returns:
- true if values like this are being excluded, else false
-
writeNumber
Serializes Number value and writes it into specified buffer. -
writeObject
-
writeObject
Serializes object and writes it into specified buffer. -
getObjectProperties
-
writeCharSequence
Serializes any char sequence and writes it into specified buffer. -
writeRaw
Serializes any char sequence and writes it into specified buffer without performing any manipulation of the given text. -
writeDate
Serializes date and writes it into specified buffer. -
writeArray
Serializes array and writes it into specified buffer. -
writeMap
Serializes map and writes it into specified buffer. -
writeMapEntry
Serializes a map entry and writes it into specified buffer. -
writeIterator
Serializes iterator and writes it into specified buffer. -
findConverter
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. Anull
value will be returned if no suitable converter can be found for the given type.- Parameters:
type
- that this converter can handle- Returns:
- first converter that can handle the given type; else
null
if no compatible converters are found for the given type.
-
shouldExcludeType
Indicates whether the given type should be excluded from the generated output.- Parameters:
type
- the type to check- Returns:
true
if the given type should not be output, elsefalse
-