com.fincatto.documentofiscal.nfe310.classes.NFNotaInfoItemModalidadeBCICMSST 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.nfe310.classes;
public enum NFNotaInfoItemModalidadeBCICMSST {
PRECO_TABELADO("0", "Pre\u00e7o Tabelado"),
LISTA_NEGATIVA("1", "Lista Negativa"),
LISTA_POSITIVA("2", "Lista Positiva"),
LISTA_NEUTRA("3", "Lista Neutra"),
MARGEM_VALOR_AGREGADO("4", "Margem Valor Agregado"),
PAUTA("5", "Pauta");
private final String codigo;
private final String descricao;
NFNotaInfoItemModalidadeBCICMSST(final String codigo, final String descricao) {
this.codigo = codigo;
this.descricao = descricao;
}
public String getCodigo() {
return this.codigo;
}
public String getDescricao() {
return this.descricao;
}
public static NFNotaInfoItemModalidadeBCICMSST valueOfCodigo(final String codigo) {
for (final NFNotaInfoItemModalidadeBCICMSST modalidadeBCIMSST : NFNotaInfoItemModalidadeBCICMSST.values()) {
if (modalidadeBCIMSST.getCodigo().equals(codigo)) {
return modalidadeBCIMSST;
}
}
return null;
}
@Override
public String toString() {
return codigo + " - " + descricao;
}
}