Uses of Class
jsonvalues.JsInt
-
Packages that use JsInt Package Description jsonvalues json-values is a one-package and zero-dependency library to work with jsons in a declarative and functional way. -
-
Uses of JsInt in jsonvalues
Methods in jsonvalues that return JsInt Modifier and Type Method Description JsInt
JsInt. map(IntUnaryOperator fn)
Maps this json integer into another one.JsInt
JsInt. minus(JsInt that)
subtract this integer from the specified onestatic JsInt
JsInt. of(int n)
Static factory method to create a JsInt from an integer primitive type.JsInt
JsInt. plus(JsInt that)
adds up this integer to the specified oneJsInt
JsInt. times(JsInt that)
multiplies this integer by the specified onedefault JsInt
JsValue. toJsInt()
Methods in jsonvalues with parameters of type JsInt Modifier and Type Method Description int
JsInt. compareTo(JsInt o)
Compares twoJsInt
objects numerically.boolean
JsBigDec. equals(JsInt jsInt)
returns true if this bigdecimal and the specified integer represent the same numberboolean
JsBigInt. equals(JsInt jsInt)
returns true if this biginteger and the specified integer represent the same numberboolean
JsDouble. equals(JsInt jsInt)
returns true if this double and the specified integer represent the same numberboolean
JsLong. equals(JsInt jsInt)
returns true if this long and the specified integer represent the same numberJsInt
JsInt. minus(JsInt that)
subtract this integer from the specified oneJsInt
JsInt. plus(JsInt that)
adds up this integer to the specified oneJsInt
JsInt. times(JsInt that)
multiplies this integer by the specified one
-