Uses of Interface
com.blackrook.json.JSONConverter
Packages that use JSONConverter
Package
Description
Contains a set of classes for JSON parsing and object handling.
Contains some pre-packaged converters.
-
Uses of JSONConverter in com.blackrook.json
Classes in com.blackrook.json that implement JSONConverterModifier and TypeClassDescriptionclass
Default converter for all types of objects that are not a part of the annotated conversions.Methods in com.blackrook.json that return JSONConverterModifier and TypeMethodDescription<E> JSONConverter<E>
JSONConverterSet.getConverter
(Class<E> clazz) Gets a converter for a type.static <E> JSONConverter<E>
JSONObject.getConverter
(Class<E> clazz) Gets a converter for a type for the default converter set.Methods in com.blackrook.json with parameters of type JSONConverterModifier and TypeMethodDescription<E> void
JSONConverterSet.setConverter
(Class<E> clazz, JSONConverter<E> converter) Sets a converter for a type.static <E> void
JSONObject.setConverter
(Class<E> clazz, JSONConverter<E> converter) Sets a converter for a type. -
Uses of JSONConverter in com.blackrook.json.converters
Classes in com.blackrook.json.converters that implement JSONConverterModifier and TypeClassDescriptionclass
A special converter that converts dates from strings to Dates in JSON member data.class
A special converter that converts dates from milliseconds since Epoch to Dates in JSON member data.class
A JSON date/time converter that uses the formatyyyy-MM-dd'T'HH:mm:ss.SSS'Z'
in UTC time as the format.