Package jsonvalues

Class JsBigDec

    • Method Detail

      • id

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

        public boolean isBigDec()
        Specified by:
        isBigDec in interface JsValue
        Returns:
        true if this JsElem is a JsBigDec
      • hashCode

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

        public boolean equals​(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 Object
        Parameters:
        that - the reference object with which to compare.
        Returns:
        true if that is a JsNumber with the same value as this
      • map

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

        public static JsBigDec of​(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​(Predicate<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