Uses of Class
jsonvalues.ParseBuilder
-
-
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 JsElem> 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 TryArr
JsArray. _parse_(String str, ParseBuilder builder)
Tries to parse the string into a mutable array, performing the specified transformations while the parsing.static TryObj
JsObj. _parse_(String str, ParseBuilder builder)
Tries to parse the string into an mutable object, performing the specified transformations while the parsing.static Try
Json. _parse_(String str, ParseBuilder builder)
Tries to parse the string into a mutable json, performing the specified transformations while the parsing.static TryArr
JsArray. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable array, performing the specified transformations during the parsing.static TryObj
JsObj. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable object, performing the specified transformations during the parsing.static Try
Json. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable json, performing the specified transformations while the parsing.
-