com.vladsch.boxed.json.JsBigDecimalNumber Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boxed-json Show documentation
Show all versions of boxed-json Show documentation
Mutable JSON classes with easy search and manipulation in Java
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