All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.nav.vedtak.ytelse.Desimaltall Maven / Gradle / Ivy

There is a newer version: 5.0_20191210082234_0bd32f2
Show newest version
package no.nav.vedtak.ytelse;

import java.math.BigDecimal;
import java.math.RoundingMode;

import com.fasterxml.jackson.annotation.JsonProperty;

public class Desimaltall {

    @JsonProperty("verdi")
    private BigDecimal verdi;

    public Desimaltall(BigDecimal verdi) {
        setVerdi(verdi);
    }

    public BigDecimal getVerdi() {
        return verdi;
    }

    public void setVerdi(BigDecimal verdi) {
        if (verdi != null) {
            this.verdi = verdi.setScale(2, RoundingMode.HALF_UP);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy