Uses of Class
jsonvalues.ParseOptions
-
-
Uses of ParseOptions in jsonvalues
Methods in jsonvalues that return ParseOptions Modifier and Type Method Description static ParseOptionsParseOptions. builder()static factory method to create a builder to customize the parsing of a string into a json.ParseOptionsParseOptions. withElemFilter(Predicate<? super JsPair> filter)adds a predicate to this builder to filter the elements of the json to be parsed, removing those pairs that are evaluated to false on the predicate.ParseOptionsParseOptions. withElemMap(Function<JsPair,JsElem> map)adds a function to this builder to map the elements of the json to be parsedParseOptionsParseOptions. withKeyFilter(Predicate<JsPath> keyFilter)adds a function to this builder to filter the keys of the json to be parsed.ParseOptionsParseOptions. withKeyMap(UnaryOperator<String> keyMap)adds a function to this builder to map the keys of the json to be parsed.Methods in jsonvalues with parameters of type ParseOptions Modifier and Type Method Description static TryArrJsArray. _parse_(String str, ParseOptions options)Tries to parse the string into a mutable array, performing some operations while the parsing.static TryObjJsObj. _parse_(String str, ParseOptions options)Tries to parse the string into an mutable object, performing some operations while the parsing.static TryJson. _parse_(String str, ParseOptions options)Tries to parse the string into a mutable json, performing some operations while the parsing.static TryArrJsArray. parse(String str, ParseOptions options)Tries to parse the string into an immutable array, performing some operations during the parsing.static TryObjJsObj. parse(String str, ParseOptions options)Tries to parse the string into an immutable object, performing some operations during the parsing.static TryJson. parse(String str, ParseOptions options)Tries to parse the string into an immutable json, performing some operations while the parsing.
-