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