com.fincatto.documentofiscal.cte400.transformers.CTIndicadoNegociavelTransformer 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.cte400.transformers;
import com.fincatto.documentofiscal.cte400.classes.CTIndicadoNegociavel;
import org.simpleframework.xml.transform.Transform;
public class CTIndicadoNegociavelTransformer implements Transform {
@Override
public CTIndicadoNegociavel read(String arg0) {
return CTIndicadoNegociavel.valueOfCodigo(arg0);
}
@Override
public String write(CTIndicadoNegociavel arg0) {
return arg0.getCodigo();
}
}