![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.nfe400.transformers.NFOperadoraCartaoTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nfe Show documentation
Show all versions of nfe Show documentation
Biblioteca de comunicacao de nota fiscal eletronica brasileira
package com.fincatto.documentofiscal.nfe400.transformers;
import com.fincatto.documentofiscal.nfe400.classes.nota.NFOperadoraCartao;
import org.simpleframework.xml.transform.Transform;
public class NFOperadoraCartaoTransformer implements Transform {
@Override
public NFOperadoraCartao read(final String codigo) {
return NFOperadoraCartao.valueOfCodigo(codigo);
}
@Override
public String write(final NFOperadoraCartao operadoraCartao) {
return operadoraCartao.getCodigo();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy