Package de.quantummaid.eventmaid.mapping
Interface Demapifier<T>
-
- Type Parameters:
T- the type of the object to be created
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Demapifier<T>
ADemapifieris responsible to create a new object of the givenClassfrom the date contained in theMap.- See Also:
- EventMaid Documentation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tmap(Class<T> targetType, Object map)Creates a new object of the given type using the data from theMap.
-