Package org.apache.johnzon.mapper
Interface MappingParser
-
- All Known Implementing Classes:
MappingParserImpl
,MappingParserImpl.SuppressConversionMappingParser
public interface MappingParser
Handles reading Json for Objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Collection<Class<?>>
getSkippedConverters()
<T> T
readObject(jakarta.json.JsonValue jsonValue, Type targetType)
<T> T
readObject(Type targetType)
-
-
-
Method Detail
-
readObject
<T> T readObject(Type targetType)
-
readObject
<T> T readObject(jakarta.json.JsonValue jsonValue, Type targetType)
-
getSkippedConverters
default Collection<Class<?>> getSkippedConverters()
-
-