Uses of Class
com.clumd.projects.javajson.exceptions.JsonException
Packages that use JsonException
Package
Description
-
Uses of JsonException in com.clumd.projects.javajson.api
Methods in com.clumd.projects.javajson.api that throw JsonExceptionModifier and TypeMethodDescriptionJsonGenerator.convertToJSON()Convert the current Java Class into a Java-JSON JSON representation of itself.static JsonJsonParser.parse(JsonGenerator jsonable) A pass-through method to convert any object marked as capable of converting itself to JSON, into the JSON equivalent.static JsonParse a single JSON object from String.static JsonParse a static array of strings into a single JSON object.static JsonJsonParser.parse(Collection<String> jsonAsStringCollection) Parse a collection of strings into a single JSON object.JsonParser.parseMultipleJSONables(Collection<JsonGenerator> multipleJsonAsGenerators) Parse a collection of Java Objects marked as capable of converting themselves to JSON into a multiple JSON objects.JsonParser.parseMultipleJSONablesForDistinct(Collection<JsonGenerator> multipleJsonAsGenerators) The same asJsonParser.parseMultipleJSONables(Collection), but any duplicates will be filtered out.JsonParser.parseMultipleStrings(Collection<String> multipleJsonAsStrings) Parse a collection of strings into a multiple JSON objects.JsonParser.parseMultipleStringsForDistinct(Collection<String> multipleJsonAsStrings) The same asJsonParser.parseMultipleStrings(Collection), but any duplicates will be filtered out. -
Uses of JsonException in com.clumd.projects.javajson.exceptions
Subclasses of JsonException in com.clumd.projects.javajson.exceptionsModifier and TypeClassDescriptionclassA class representing all possible exceptions that could occur when creating a JSON object from Java values.classA class representing all possible exceptions that could occur when validating a JSON object against a Schema. -
Uses of JsonException in com.clumd.projects.javajson.exceptions.json
Subclasses of JsonException in com.clumd.projects.javajson.exceptions.jsonModifier and TypeClassDescriptionclassA class representing all possible exceptions that could occur with any JSON key.classA class representing all possible exceptions that could occur when parsing a JSON object.classThis exception is used when there was a value found at a given key, but the datatype of the value found was not suitable for the calling method.classThis exception is used when a JSON key was malformed in some way.classThis exception is used when the value at some location provided by some key does not exist. -
Uses of JsonException in com.clumd.projects.javajson.exceptions.schema
Subclasses of JsonException in com.clumd.projects.javajson.exceptions.schemaModifier and TypeClassDescriptionclassThis exception is used when a provided schema, IS valid JSON, but is NOT a valid Schema.classThis exception is used validating a JSON object against a schema, a violation of one of the Schema's constraints was found.