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 TypeClassDescriptionclassDefault 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> voidJSONConverterSet.setConverter(Class<E> clazz, JSONConverter<E> converter) Sets a converter for a type.static <E> voidJSONObject.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 TypeClassDescriptionclassA special converter that converts dates from strings to Dates in JSON member data.classA special converter that converts dates from milliseconds since Epoch to Dates in JSON member data.classA JSON date/time converter that uses the formatyyyy-MM-dd'T'HH:mm:ss.SSS'Z'in UTC time as the format.