Package jsonvalues

Class JsBigDec

  • All Implemented Interfaces:
    java.lang.Comparable<JsBigDec>, JsValue

    public final class JsBigDec
    extends JsNumber
    implements java.lang.Comparable<JsBigDec>
    Represents an immutable json number of type BigDecimal.
    • Field Detail

      • prism

        public static final Prism<JsValue,​java.math.BigDecimal> prism
        prism between the sum type JsValue and JsBigDec
      • value

        public final java.math.BigDecimal value
        The big decimal value
    • Method Detail

      • id

        public int id()
        Specified by:
        id in interface JsValue
      • isBigDec

        public boolean isBigDec()
        Description copied from interface: JsValue
        Returns true if this JsValue is a JsBigDec
        Specified by:
        isBigDec in interface JsValue
        Returns:
        true if this JsValue is a JsBigDec
      • compareTo

        public int compareTo​(JsBigDec o)
        Compares two JsBigDec objects numerically
        Specified by:
        compareTo in interface java.lang.Comparable<JsBigDec>
        See Also:
        compareTo(JsBigDec)
      • hashCode

        public int hashCode()
        Returns the hashcode of this json big decimal
        Overrides:
        hashCode in class java.lang.Object
        Returns:
        the hashcode of this JsBigDec
      • equals

        public boolean equals​(java.lang.Object that)
        Indicates whether some other object is "equal to" this json big decimal. Numbers of different types are equals if the have the same value.
        Overrides:
        equals in class java.lang.Object
        Parameters:
        that - the reference object with which to compare.
        Returns:
        true if that is a JsNumber with the same value as this
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
        Returns:
        a string representation of the bigdec value
        See Also:
        BigDecimal.toString
      • map

        public JsBigDec map​(java.util.function.UnaryOperator<java.math.BigDecimal> fn)
        Maps this JsBigDec into another one
        Parameters:
        fn - the mapping function
        Returns:
        a new JsBigDec
      • of

        public static JsBigDec of​(java.math.BigDecimal n)
        Static factory method to create a JsBigDec from a BigDecimal object.
        Parameters:
        n - the big decimal
        Returns:
        a new JsBigDec
      • test

        public boolean test​(java.util.function.Predicate<java.math.BigDecimal> predicate)
        Tests the value of this json bigdec on a predicate
        Parameters:
        predicate - the predicate
        Returns:
        true if this big decimal satisfies the predicate