Package jsonvalues

Class JsBigDec

    • Field Detail

      • prism

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

        public final BigDecimal value
        The big decimal value
    • Method Detail

      • 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
      • 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
      • 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 they 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
      • test

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