![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.cte300.transformes.CTClasseTarifaTransformer 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.cte300.transformes;
import org.simpleframework.xml.transform.Transform;
import com.fincatto.documentofiscal.cte300.classes.CTClasseTarifa;
public class CTClasseTarifaTransformer implements Transform {
@Override
public CTClasseTarifa read(String arg0) {
return CTClasseTarifa.valueOfCodigo(arg0);
}
@Override
public String write(CTClasseTarifa arg0) {
return arg0.getCodigo();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy