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

com.fincatto.documentofiscal.transformers.DFModeloTransformer Maven / Gradle / Ivy

There is a newer version: 4.0.75
Show newest version
package com.fincatto.documentofiscal.transformers;

import com.fincatto.documentofiscal.DFModelo;
import org.simpleframework.xml.transform.Transform;

public class DFModeloTransformer implements Transform {

    @Override
    public DFModelo read(final String codigo) {
        return DFModelo.valueOfCodigo(codigo);
    }

    @Override
    public String write(final DFModelo tipo) {
        return tipo.getCodigo();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy