com.fincatto.documentofiscal.nfe400.transformers.NFNotaInfoImpostoTributacaoICMSTransformer 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.NFNotaInfoImpostoTributacaoICMS;
import org.simpleframework.xml.transform.Transform;
public class NFNotaInfoImpostoTributacaoICMSTransformer implements Transform {
@Override
public NFNotaInfoImpostoTributacaoICMS read(final String icms) {
return NFNotaInfoImpostoTributacaoICMS.valueOfCodigo(icms);
}
@Override
public String write(final NFNotaInfoImpostoTributacaoICMS icms) {
return icms.getCodigo();
}
}