com.fincatto.documentofiscal.mdfe3.transformers.MDFUnidadeMedidaPesoBrutoCargaTransformer 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.mdfe3.transformers;
import com.fincatto.documentofiscal.mdfe3.classes.def.MDFUnidadeMedidaPesoBrutoCarga;
import org.simpleframework.xml.transform.Transform;
/**
* Created by Eldevan Nery Junior on 06/11/17.
*/
public class MDFUnidadeMedidaPesoBrutoCargaTransformer implements Transform {
@Override
public MDFUnidadeMedidaPesoBrutoCarga read(String value) {
return MDFUnidadeMedidaPesoBrutoCarga.valueOfCodigo(value);
}
@Override
public String write(MDFUnidadeMedidaPesoBrutoCarga value) {
return value.getCodigo();
}
}