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