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

com.vladsch.boxed.json.JsBigDecimalNumber Maven / Gradle / Ivy

There is a newer version: 0.5.34
Show newest version
package com.vladsch.boxed.json;

import java.math.BigDecimal;

public final class JsBigDecimalNumber extends JsNumber {
    private final BigDecimal bigDecimal;

    public JsBigDecimalNumber(BigDecimal value) {
        this.bigDecimal = value;
    }

    public BigDecimal bigDecimalValue() {
        return this.bigDecimal;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy