All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sfm.datastax.impl.ConverterMapper Maven / Gradle / Ivy

There is a newer version: 8.2.3
Show newest version
package org.sfm.datastax.impl;

import org.sfm.map.Mapper;
import org.sfm.utils.conv.Converter;

public class ConverterMapper implements Converter {

    private final Mapper mapper;

    public ConverterMapper(Mapper mapper) {
        this.mapper = mapper;
    }

    @Override
    public O convert(I in) throws Exception {
        return mapper.map(in);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy