Uses of Class
jsonvalues.ParseBuilder
-
-
Uses of ParseBuilder in jsonvalues
Methods in jsonvalues that return ParseBuilder Modifier and Type Method Description static ParseBuilderParseBuilder. builder()static factory method to create a builder to customize the parsing of a string into a json.ParseBuilderParseBuilder. 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.ParseBuilderParseBuilder. withElemMap(Function<? super JsPair,? extends JsElem> map)adds a function to this builder to map the elements of the json.ParseBuilderParseBuilder. withKeyFilter(Predicate<? super JsPath> keyFilter)adds a function to this builder to filter the keys of the json.ParseBuilderParseBuilder. 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 TryArrJsArray. _parse_(String str, ParseBuilder builder)Tries to parse the string into a mutable array, performing the specified transformations while the parsing.static TryObjJsObj. _parse_(String str, ParseBuilder builder)Tries to parse the string into an mutable object, performing the specified transformations while the parsing.static TryJson. _parse_(String str, ParseBuilder builder)Tries to parse the string into a mutable json, performing the specified transformations while the parsing.static TryArrJsArray. parse(String str, ParseBuilder builder)Tries to parse the string into an immutable array, performing the specified transformations during the parsing.static TryObjJsObj. parse(String str, ParseBuilder builder)Tries to parse the string into an immutable object, performing the specified transformations during the parsing.static TryJson. parse(String str, ParseBuilder builder)Tries to parse the string into an immutable json, performing the specified transformations while the parsing.
-