Package com.jayway.jsonpath.spi.mapper
Class TapestryMappingProvider
- java.lang.Object
-
- com.jayway.jsonpath.spi.mapper.TapestryMappingProvider
-
- All Implemented Interfaces:
MappingProvider
public class TapestryMappingProvider extends java.lang.Object implements MappingProvider
-
-
Constructor Summary
Constructors Constructor Description TapestryMappingProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Tmap(java.lang.Object source, TypeRef<T> targetType, Configuration configuration)<T> Tmap(java.lang.Object source, java.lang.Class<T> targetType, Configuration configuration)
-
-
-
Method Detail
-
map
public <T> T map(java.lang.Object source, java.lang.Class<T> targetType, Configuration configuration)- Specified by:
mapin interfaceMappingProvider- Type Parameters:
T- the mapped result type- Parameters:
source- object to maptargetType- the type the source object should be mapped toconfiguration- current configuration- Returns:
- return the mapped object
-
map
public <T> T map(java.lang.Object source, TypeRef<T> targetType, Configuration configuration)- Specified by:
mapin interfaceMappingProvider- Type Parameters:
T- the mapped result type- Parameters:
source- object to maptargetType- the type the source object should be mapped toconfiguration- current configuration- Returns:
- return the mapped object
-
-