Package jsonvalues

Class JsLong

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

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

      • prism

        public static final Prism<JsValue,​java.lang.Long> prism
        prism between the sum type JsValue and JsLong
      • value

        public final long value
        The long primitive.
    • Method Detail

      • id

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

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

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

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

        public boolean equals​(java.lang.Object that)
        Indicates whether some other object is "equal to" this json long. 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 JsLong
      • toString

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

        public JsLong map​(java.util.function.LongUnaryOperator fn)
        Maps this json long into another one.
        Parameters:
        fn - the mapping function
        Returns:
        a new JsLong
      • of

        public static JsLong of​(long n)
        Static factory method to create a JsLong from a long primitive type.
        Parameters:
        n - the long primitive type
        Returns:
        a new JsLong
      • test

        public boolean test​(java.util.function.LongPredicate predicate)
        Tests the value of this json long on a predicate.
        Parameters:
        predicate - the predicate
        Returns:
        true if this long satisfies the predicate