Uses of Class
com.google.gson.Strictness
-
Packages that use Strictness Package Description com.google.gson This package provides theGsonclass to convert Json to Java and vice-versa.com.google.gson.stream This package provides classes for processing JSON in an efficient streaming way. -
-
Uses of Strictness in com.google.gson
Methods in com.google.gson that return Strictness Modifier and Type Method Description static StrictnessStrictness. valueOf(String name)Returns the enum constant of this type with the specified name.static Strictness[]Strictness. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.gson with parameters of type Strictness Modifier and Type Method Description GsonBuilderGsonBuilder. setStrictness(Strictness strictness)Sets the strictness of this builder to the provided parameter. -
Uses of Strictness in com.google.gson.stream
Methods in com.google.gson.stream that return Strictness Modifier and Type Method Description StrictnessJsonReader. getStrictness()Returns the strictness of this reader.StrictnessJsonWriter. getStrictness()Returns the strictness of this writer.Methods in com.google.gson.stream with parameters of type Strictness Modifier and Type Method Description voidJsonReader. setStrictness(Strictness strictness)Configures how liberal this parser is in what it accepts.voidJsonWriter. setStrictness(Strictness strictness)Configures how strict this writer is with regard to the syntax rules specified in RFC 8259.
-