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.jsonvalues.gen -
-
Uses of JsInt in jsonvalues
Methods in jsonvalues that return JsInt Modifier and Type Method Description JsInt
JsInt. map(java.util.function.IntUnaryOperator fn)
Maps this json integer into another one.static JsInt
JsInt. of(int n)
Static factory method to create a JsInt from an integer primitive type.default 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. -
Uses of JsInt in jsonvalues.gen
Fields in jsonvalues.gen with type parameters of type JsInt Modifier and Type Field Description static JsGen<JsInt>
JsGens. integer
Generates an integer numberstatic JsGen<JsInt>
JsGens. natural
Generates a positive integer (zero included)Methods in jsonvalues.gen that return types with arguments of type JsInt Modifier and Type Method Description static JsGen<JsInt>
JsGens. choose(int min, int max)
Creates a generator that generates integers in the range`min` to `max`, inclusive.
-