Uses of Class
jsonvalues.JsPrimitive
Packages that use JsPrimitive
Package
Description
This package includes all the classes to represents, create and manipulate JSON
-
Uses of JsPrimitive in jsonvalues
Subclasses of JsPrimitive in jsonvaluesModifier and TypeClassDescriptionfinal class
Represents an immutable JSON number of type BigDecimal.final class
Represents an immutable JSON number of type BigInteger.final class
Represents an array of bytes.final class
Represents an immutable JSON boolean.final class
Represents an immutable JSON number of type double.final class
Represents an immutable instant.final class
Represents an immutable JSON number of type integer.final class
Represents an immutable JSON number of type long.final class
Represents null.class
Represents an immutable JSON number.final class
Represents an immutable JSON string.Methods in jsonvalues that return JsPrimitiveModifier and TypeMethodDescriptionJsBinary.toJsPrimitive()
JsBool.toJsPrimitive()
JsInstant.toJsPrimitive()
JsNothing.toJsPrimitive()
JsNull.toJsPrimitive()
JsNumber.toJsPrimitive()
default JsPrimitive
Json.toJsPrimitive()
JsStr.toJsPrimitive()
JsValue.toJsPrimitive()
Method parameters in jsonvalues with type arguments of type JsPrimitiveModifier and TypeMethodDescriptionJsArray.filterValues
(BiPredicate<? super JsPath, ? super JsPrimitive> filter) JsArray.filterValues
(Predicate<? super JsPrimitive> filter) JsObj.filterValues
(BiPredicate<? super JsPath, ? super JsPrimitive> filter) JsObj.filterValues
(Predicate<? super JsPrimitive> filter) Json.filterValues
(BiPredicate<? super JsPath, ? super JsPrimitive> filter) Filters all the pairs of elements of this json, removing those that don't ifPredicateElse the predicate.Json.filterValues
(Predicate<? super JsPrimitive> filter) Filters all the pairs of elements of this json, removing those that don't ifPredicateElse the predicate.JsArray.mapValues
(BiFunction<? super JsPath, ? super JsPrimitive, ? extends JsValue> fn) JsArray.mapValues
(Function<? super JsPrimitive, ? extends JsValue> fn) JsObj.mapValues
(BiFunction<? super JsPath, ? super JsPrimitive, ? extends JsValue> fn) JsObj.mapValues
(Function<? super JsPrimitive, ? extends JsValue> fn) Json.mapValues
(BiFunction<? super JsPath, ? super JsPrimitive, ? extends JsValue> fn) Maps all the values of this json.Json.mapValues
(Function<? super JsPrimitive, ? extends JsValue> fn) Maps all the values of this json.<R> Optional<R>
JsArray.reduce
(BinaryOperator<R> op, BiFunction<? super JsPath, ? super JsPrimitive, R> map, BiPredicate<? super JsPath, ? super JsPrimitive> predicate) <R> Optional<R>
JsArray.reduce
(BinaryOperator<R> op, BiFunction<? super JsPath, ? super JsPrimitive, R> map, BiPredicate<? super JsPath, ? super JsPrimitive> predicate) <R> Optional<R>
JsArray.reduce
(BinaryOperator<R> op, Function<? super JsPrimitive, R> map, Predicate<? super JsPrimitive> predicate) <R> Optional<R>
JsArray.reduce
(BinaryOperator<R> op, Function<? super JsPrimitive, R> map, Predicate<? super JsPrimitive> predicate) <R> Optional<R>
JsObj.reduce
(BinaryOperator<R> op, BiFunction<? super JsPath, ? super JsPrimitive, R> map, BiPredicate<? super JsPath, ? super JsPrimitive> predicate) <R> Optional<R>
JsObj.reduce
(BinaryOperator<R> op, BiFunction<? super JsPath, ? super JsPrimitive, R> map, BiPredicate<? super JsPath, ? super JsPrimitive> predicate) <R> Optional<R>
JsObj.reduce
(BinaryOperator<R> op, Function<? super JsPrimitive, R> map, Predicate<? super JsPrimitive> predicate) <R> Optional<R>
JsObj.reduce
(BinaryOperator<R> op, Function<? super JsPrimitive, R> map, Predicate<? super JsPrimitive> predicate) <R> Optional<R>
Json.reduce
(BinaryOperator<R> op, BiFunction<? super JsPath, ? super JsPrimitive, R> map, BiPredicate<? super JsPath, ? super JsPrimitive> predicate) Performs a reduction on the values of this json that satisfy the predicate.<R> Optional<R>
Json.reduce
(BinaryOperator<R> op, BiFunction<? super JsPath, ? super JsPrimitive, R> map, BiPredicate<? super JsPath, ? super JsPrimitive> predicate) Performs a reduction on the values of this json that satisfy the predicate.<R> Optional<R>
Json.reduce
(BinaryOperator<R> op, Function<? super JsPrimitive, R> map, Predicate<? super JsPrimitive> predicate) Performs a reduction on the values of this json that satisfy the predicate.<R> Optional<R>
Json.reduce
(BinaryOperator<R> op, Function<? super JsPrimitive, R> map, Predicate<? super JsPrimitive> predicate) Performs a reduction on the values of this json that satisfy the predicate.