com.fincatto.documentofiscal.nfe400.classes.nota.NFNotaInfoCanaFornecimentoDiario 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.nota;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import java.math.BigDecimal;
public class NFNotaInfoCanaFornecimentoDiario extends DFBase {
private static final long serialVersionUID = 4997480383513451707L;
@Attribute(name = "dia")
private int dia;
@Element(name = "qtde")
private String quantidade;
public void setDia(final int dia) {
if (dia > 31 || dia < 1) {
throw new IllegalStateException("valor do dia invalido.");
}
this.dia = dia;
}
public void setQuantidade(final BigDecimal quantidade) {
this.quantidade = DFBigDecimalValidador.tamanho21ComAte10CasasDecimais(quantidade, "Quantidade");
}
public int getDia() {
return this.dia;
}
public String getQuantidade() {
return this.quantidade;
}
}