Package jsonvalues
Class JsLong
- java.lang.Object
-
- jsonvalues.JsPrimitive
-
- jsonvalues.JsNumber
-
- jsonvalues.JsLong
-
- All Implemented Interfaces:
Comparable<JsLong>,JsValue
public final class JsLong extends JsNumber implements Comparable<JsLong>
Represents an immutable json number of type long.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(JsLong o)Compares twoJsLongobjects numerically.booleanequals(Object that)Indicates whether some other object is "equal to" this json long.inthashCode()Returns the hashcode of this json long.intid()booleanisLong()Returns this JsValue as a JsLongJsLongmap(LongUnaryOperator fn)Maps this json long into another one.static JsLongof(long n)Static factory method to create a JsLong from a long primitive type.booleantest(LongPredicate predicate)Tests the value of this json long on a predicate.StringtoString()-
Methods inherited from class jsonvalues.JsNumber
isNumber, toJsPrimitive
-
Methods inherited from class jsonvalues.JsPrimitive
isJson, isPrimitive
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface jsonvalues.JsValue
ifNothing, ifNull, isArray, isArray, isBigDec, isBigDec, isBigInt, isBigInt, isBinary, isBool, isDecimal, isDouble, isDouble, isFalse, isInstant, isInstant, isInt, isInt, isIntegral, isJson, isLong, isNothing, isNotNothing, isNotNull, isNotNumber, isNull, isObj, isObj, isSameType, isStr, isStr, isTrue, toJsArray, toJsBigDec, toJsBigInt, toJsBinary, toJsBool, toJsDouble, toJsInstant, toJsInt, toJsLong, toJsNumber, toJsObj, toJson, toJsStr
-
-
-
-
Field Detail
-
TYPE_ID
public static final int TYPE_ID
- See Also:
- Constant Field Values
-
prism
public static final fun.optic.Prism<JsValue,Long> prism
prism between the sum type JsValue and JsLong
-
value
public final long value
The long primitive.
-
-
Method Detail
-
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
-
isLong
public boolean isLong()
Description copied from interface:JsValueReturns this JsValue as a JsLong
-
compareTo
public int compareTo(JsLong o)
Compares twoJsLongobjects numerically.- Specified by:
compareToin interfaceComparable<JsLong>- See Also:
Long.compareTo(Long)
-
hashCode
public int hashCode()
Returns the hashcode of this json long.
-
equals
public boolean equals(Object that)
Indicates whether some other object is "equal to" this json long. Numbers of different types are equals if they have the same value.
-
toString
public String toString()
- Overrides:
toStringin classObject- Returns:
- a string representation of the long value.
- See Also:
Long.toString
-
map
public JsLong map(LongUnaryOperator fn)
Maps this json long into another one.- Parameters:
fn- the mapping function- Returns:
- a new JsLong
-
test
public boolean test(LongPredicate predicate)
Tests the value of this json long on a predicate.- Parameters:
predicate- the predicate- Returns:
- true if this long satisfies the predicate
-
-