Uses of Class
jsonvalues.ParseBuilder
-
Packages that use ParseBuilder 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 ParseBuilder in jsonvalues
Methods in jsonvalues that return ParseBuilder Modifier and Type Method Description static ParseBuilder
ParseBuilder. builder()
static factory method to create a builder to customize the parsing of a string into a json.ParseBuilder
ParseBuilder. withElemFilter(Predicate<? super JsPair> filter)
adds a predicate to this builder to filter the elements of the json, removing those pairs that are evaluated to false on the predicate.ParseBuilder
ParseBuilder. withElemMap(Function<? super JsPair,? extends JsValue> map)
adds a function to this builder to map the elements of the json.ParseBuilder
ParseBuilder. withKeyFilter(Predicate<? super JsPath> keyFilter)
adds a function to this builder to filter the keys of the json.ParseBuilder
ParseBuilder. withKeyMap(UnaryOperator<String> keyMap)
adds a function to this builder to map the keys of the json.Methods in jsonvalues with parameters of type ParseBuilder Modifier and Type Method Description static JsArray
JsArray. parse(String str, ParseBuilder builder)
static JsObj
JsObj. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable object, performing the specified transformations during the parsing.static Json<?>
Json. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable json, performing the specified transformations while the parsing.
-