Uses of Class
name.martingeisse.grumpyjson.deserialize.JsonDeserializationException
Packages that use JsonDeserializationException
Package
Description
-
Uses of JsonDeserializationException in name.martingeisse.grumpyjson
Methods in name.martingeisse.grumpyjson that throw JsonDeserializationExceptionModifier and TypeMethodDescription<T> TGsonBasedJsonEngine.deserialize(InputStream source, Class<T> clazz) GsonBasedJsonEngine.deserialize(InputStream source, Type type) <T> TGsonBasedJsonEngine.deserialize(InputStream source, TypeToken<T> typeToken) <T> TGsonBasedJsonEngine.deserialize(Reader source, Class<T> clazz) GsonBasedJsonEngine.deserialize(Reader source, Type type) <T> TGsonBasedJsonEngine.deserialize(Reader source, TypeToken<T> typeToken) <T> TGsonBasedJsonEngine.deserialize(String source, Class<T> clazz) GsonBasedJsonEngine.deserialize(String source, Type type) <T> TGsonBasedJsonEngine.deserialize(String source, TypeToken<T> typeToken) abstract <T> TJsonEngine.deserialize(InputStream source, Class<T> clazz) deserializes JSON from anInputStream.abstract ObjectJsonEngine.deserialize(InputStream source, Type type) deserializes JSON from anInputStream.abstract <T> TJsonEngine.deserialize(InputStream source, TypeToken<T> typeToken) deserializes JSON from anInputStream.abstract <T> TJsonEngine.deserialize(Reader source, Class<T> clazz) deserializes JSON from anReader.abstract ObjectJsonEngine.deserialize(Reader source, Type type) deserializes JSON from anReader.abstract <T> TJsonEngine.deserialize(Reader source, TypeToken<T> typeToken) deserializes JSON from anReader.abstract <T> TJsonEngine.deserialize(String source, Class<T> clazz) deserializes JSON from aString.abstract ObjectJsonEngine.deserialize(String source, Type type) deserializes JSON from aString.abstract <T> TJsonEngine.deserialize(String source, TypeToken<T> typeToken) deserializes JSON from aString.final <T> TStructuralJsonEngine.deserialize(JsonElement source, Class<T> clazz) deserializes JSON from aJsonElement.final ObjectStructuralJsonEngine.deserialize(JsonElement source, Type type) deserializes JSON from aJsonElement.final <T> TStructuralJsonEngine.deserialize(JsonElement source, TypeToken<T> typeToken) deserializes JSON from aJsonElement. -
Uses of JsonDeserializationException in name.martingeisse.grumpyjson.builtin
Methods in name.martingeisse.grumpyjson.builtin that throw JsonDeserializationExceptionModifier and TypeMethodDescriptionBooleanConverter.deserialize(JsonElement json, Type type) EnumConverter.deserialize(JsonElement json, Type type) IntegerConverter.deserialize(JsonElement json, Type type) JsonElementConverter.deserialize(JsonElement json, Type type) List<?>ListConverter.deserialize(JsonElement json, Type type) LocalDateConverter.deserialize(JsonElement json, Type type) LocalDateTimeConverter.deserialize(JsonElement json, Type type) LocalTimeConverter.deserialize(JsonElement json, Type type) LongConverter.deserialize(JsonElement json, Type type) Map<?,?> MapConverter.deserialize(JsonElement json, Type type) StringConverter.deserialize(JsonElement json, Type type) -
Uses of JsonDeserializationException in name.martingeisse.grumpyjson.builtin.helper_types
Methods in name.martingeisse.grumpyjson.builtin.helper_types that throw JsonDeserializationExceptionModifier and TypeMethodDescriptionFieldMustBeNullConverter.deserialize(JsonElement json, Type type) IgnoredFieldConverter.deserialize(JsonElement json, Type type) NullableFieldConverter.deserialize(JsonElement json, Type type) OptionalFieldConverter.deserialize(JsonElement json, Type type) -
Uses of JsonDeserializationException in name.martingeisse.grumpyjson.builtin.record
Methods in name.martingeisse.grumpyjson.builtin.record that throw JsonDeserializationException -
Uses of JsonDeserializationException in name.martingeisse.grumpyjson.deserialize
Methods in name.martingeisse.grumpyjson.deserialize that throw JsonDeserializationExceptionModifier and TypeMethodDescriptionCustomJsonDeserializer.DeserializerBody.deserialize(JsonElement json) Deserializes a value.JsonDeserializer.deserialize(JsonElement json, Type type) Converts a value from JSON.default ObjectJsonDeserializerProvider.deserialize(JsonElement source, Type type) Convenience method to find a deserializer for the specifiedType, then use it to deserialize theJsonElement.default ObjectJsonDeserializer.deserializeAbsent(Type type) Converts a value from an absent JSON fragment.default ObjectJsonDeserializerProvider.deserializeAbsent(Type type) Convenience method to find a deserializer for the specifiedType, then use it to generate a default value. -
Uses of JsonDeserializationException in name.martingeisse.grumpyjson.json_model
Methods in name.martingeisse.grumpyjson.json_model that throw JsonDeserializationExceptionModifier and TypeMethodDescriptionJsonElement.deserializerExpectsArray()If this JSON element is not a JSON array, this method throws aJsonDeserializationException, otherwise it returns the array's elements as aList.booleanJsonElement.deserializerExpectsBoolean()If this JSON element is not a JSON boolean, this method throws aJsonDeserializationException, otherwise it returns the boolean value.voidJsonElement.deserializerExpectsNull()If this JSON element is not JSON null, this method throws aJsonDeserializationException, otherwise it does nothing.JsonElement.deserializerExpectsNumber()If this JSON element is not a JSON number, this method throws aJsonDeserializationException, otherwise it returns the numeric value.JsonElement.deserializerExpectsObject()If this JSON element is not a JSON object, this method throws aJsonDeserializationException, otherwise it returns the array's elements as aMap.JsonElement.deserializerExpectsString()If this JSON element is not a JSON string, this method throws aJsonDeserializationException, otherwise it returns the string value.