Interface Mapper<T>
- 
- All Known Implementing Classes:
- GraphMLMapper,- GraphSONMapper,- GryoMapper
 
 public interface Mapper<T>Represents a low-level serialization class that can be used to map classes to serializers. These implementation create instances of serializers from other libraries (e.g. creating aKryoinstance).- Author:
- Stephen Mallette (http://stephen.genoprime.com)
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static interfaceMapper.Builder<B extends Mapper.Builder>Largely a marker interface for builders that constructMapperinstances.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description TcreateMapper()Create a new instance of the internal object mapper that an implementation represents.
 
- 
- 
- 
Method Detail- 
createMapperT createMapper() Create a new instance of the internal object mapper that an implementation represents.
 
- 
 
-