Uses of Class
com.blackrook.json.JSONConverterSet
Packages that use JSONConverterSet
Package
Description
Contains a set of classes for JSON parsing and object handling.
-
Uses of JSONConverterSet in com.blackrook.json
Methods in com.blackrook.json with parameters of type JSONConverterSetModifier and TypeMethodDescriptionvoidJSONObject.addMember(String name, JSONConverterSet converterSet, Object object) Adds a member to this JSONObject, if this is an Object type.<T> TJSONObject.applyToObject(T object, JSONConverterSet converterSet) Applies this object to an object bean / plain ol' Java object, or Array.static <T> JSONObjectJSONObject.create(T object, JSONConverterSet converterSet) Creates a new JSON object using an associated specific converter set.<T> TJSONObject.newObject(Class<T> clazz, JSONConverterSet converterSet) Creates a new instance of a class, populated with values from this object.static <T> TJSONReader.readJSON(Class<T> clazz, File file, JSONConverterSet converterSet) Reads in a new object from a file and returns it as a new object converted from the JSON.static <T> TJSONReader.readJSON(Class<T> clazz, InputStream in, JSONConverterSet converterSet) Reads in a new object from an InputStream.static <T> TJSONReader.readJSON(Class<T> clazz, Reader reader, JSONConverterSet converterSet) Reads in a new object from a Reader.static <T> TJSONReader.readJSON(Class<T> clazz, String data, JSONConverterSet converterSet) Reads in a new object from a string of characters and returns it as a new object converted from the JSON.voidJSONWriter.Options.setConverterSet(JSONConverterSet converterSet) Replaces the underlying converter set.