Uses of Interface
com.cedarsoftware.util.io.ReadOptions
Packages that use ReadOptions
-
Uses of ReadOptions in com.cedarsoftware.util.io
Methods in com.cedarsoftware.util.io that return ReadOptionsModifier and TypeMethodDescriptionReadOptionsBuilder.build()
ReadOptions.ensureUsingMaps()
ReadOptions.ensureUsingObjects()
Methods in com.cedarsoftware.util.io with parameters of type ReadOptionsModifier and TypeMethodDescriptionvoid
ReaderContext.initialize
(ReadOptions readOptions, JsonReader reader) static <T> T
JsonReader.toMaps
(InputStream inputStream, ReadOptions readOptions) Note that the return type will match one of these JSON types (array, Map, string, long, boolean, or null).static <T> T
JsonReader.toMaps
(String json, ReadOptions readOptions) Note that the return type will match one of these JSON types (array, Map, string, long, boolean, or null).static <T> T
JsonReader.toObjects
(byte[] bytes, ReadOptions options) Convert the passed in JSON string into a Java object graph.static <T> T
JsonReader.toObjects
(InputStream input, ReadOptions options) Convert the passed in JSON string into a Java object graph.static <T> T
JsonReader.toObjects
(String jsonString, ReadOptions options) Convert the passed in JSON string into a Java object graph.Constructors in com.cedarsoftware.util.io with parameters of type ReadOptionsModifierConstructorDescriptionJsonReader
(byte[] bytes, ReadOptions readOptions) Creates a json reader using custom read optionsJsonReader
(ReadOptions options) Use this constructor if you already have a JsonObject graph and want to parse it into Java objects by calling jsonReader.jsonObjectsToJava(rootJsonObject) after constructing the JsonReader.JsonReader
(InputStream inp, ReadOptions readOptions) Creates a json reader using custom read optionsJsonReader
(String json, ReadOptions readOptions) Creates a json reader using custom read optionsprotected
MapResolver
(ReadOptions readOptions) protected
ObjectResolver
(ReadOptions readOptions) Constructorprotected
Resolver
(ReadOptions readOptions)