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 TryArr
ImmutableJsons.ImmutableJsArrays. parse(String str, ParseBuilder builder)
TryObj
ImmutableJsons.ImmutableJsObjs. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable object, performing the specified transformations during the parsing.Try
ImmutableJsons. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable json, performing the specified transformations while the parsing.TryArr
MutableJsons.MutableJsArrays. parse(String str, ParseBuilder builder)
Tries to parse the string into an mutable array, performing the specified transformations during the parsing.TryObj
MutableJsons.MutableJsObjs. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable object, performing the specified transformations during the parsing.Try
MutableJsons. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable json, performing the specified transformations while the parsing.
-