com.fincatto.documentofiscal.nfe310.transformers.NFFormaPagamentoTransformer 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.nfe310.transformers;
import com.fincatto.documentofiscal.nfe310.classes.NFFormaPagamentoPrazo;
import org.simpleframework.xml.transform.Transform;
public class NFFormaPagamentoTransformer implements Transform {
@Override
public NFFormaPagamentoPrazo read(final String codigo) {
return NFFormaPagamentoPrazo.valueOfCodigo(codigo);
}
@Override
public String write(final NFFormaPagamentoPrazo formaPagamento) {
return formaPagamento.getCodigo();
}
}