![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.nfe400.classes.NFNotaInfoImpostoTributacaoISSQN 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.nfe400.classes;
public enum NFNotaInfoImpostoTributacaoISSQN {
NORMAL("N", "Normal"),
RETIDA("R", "Retida"),
SUBSTITUTA("S", "Substituta"),
ISENTA("I", "Isenta");
private final String codigo;
private final String descricao;
NFNotaInfoImpostoTributacaoISSQN(final String codigo, final String descricao) {
this.codigo = codigo;
this.descricao = descricao;
}
public String getCodigo() {
return this.codigo;
}
public static NFNotaInfoImpostoTributacaoISSQN valueOfCodigo(final String codigo) {
for (final NFNotaInfoImpostoTributacaoISSQN impostoTributacaoISSQN : NFNotaInfoImpostoTributacaoISSQN.values()) {
if (impostoTributacaoISSQN.getCodigo().equals(codigo)) {
return impostoTributacaoISSQN;
}
}
return null;
}
@Override
public String toString() {
return codigo + " - " + descricao;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy