Uses of Interface
sk.antons.json.match.PathMatcher
-
Packages that use PathMatcher Package Description sk.antons.json sk.antons.json.impl sk.antons.json.literal.impl sk.antons.json.match sk.antons.json.match.wild sk.antons.json.parse -
-
Uses of PathMatcher in sk.antons.json
Methods in sk.antons.json with parameters of type PathMatcher Modifier and Type Method Description List<JsonValue>JsonValue. findAll(PathMatcher matcher)Find all json values with defined pathList<String>JsonValue. findAllLiterals(PathMatcher matcher)Find all json value with defined path and converts them to string valueJsonValueJsonValue. findFirst(PathMatcher matcher)Find first json value with defined pathStringJsonValue. findFirstLiteral(PathMatcher matcher)Find first json value with defined path and converts it to string value -
Uses of PathMatcher in sk.antons.json.impl
Methods in sk.antons.json.impl with parameters of type PathMatcher Modifier and Type Method Description voidJsonArrayImpl. findAll(PathMatcher matcher, List<JsonValue> values, List<String> path)voidJsonObjectImpl. findAll(PathMatcher matcher, List<JsonValue> values, List<String> path)List<JsonValue>JsonValueImpl. findAll(PathMatcher matcher)abstract voidJsonValueImpl. findAll(PathMatcher matcher, List<JsonValue> values, List<String> path)List<String>JsonValueImpl. findAllLiterals(PathMatcher matcher)JsonValueJsonArrayImpl. findFirst(PathMatcher matcher, List<String> path)JsonValueJsonObjectImpl. findFirst(PathMatcher matcher, List<String> path)JsonValueJsonValueImpl. findFirst(PathMatcher matcher)abstract JsonValueJsonValueImpl. findFirst(PathMatcher matcher, List<String> path)StringJsonValueImpl. findFirstLiteral(PathMatcher matcher) -
Uses of PathMatcher in sk.antons.json.literal.impl
Methods in sk.antons.json.literal.impl with parameters of type PathMatcher Modifier and Type Method Description voidJsonLiteralImpl. findAll(PathMatcher matcher, List<JsonValue> values, List<String> path)JsonValueJsonLiteralImpl. findFirst(PathMatcher matcher, List<String> path) -
Uses of PathMatcher in sk.antons.json.match
Classes in sk.antons.json.match that implement PathMatcher Modifier and Type Class Description classSimplePathMatcherCheck path with provided sequence of string values. -
Uses of PathMatcher in sk.antons.json.match.wild
Classes in sk.antons.json.match.wild that implement PathMatcher Modifier and Type Class Description classWildPathMatcherCheck path with provided sequence of string values. -
Uses of PathMatcher in sk.antons.json.parse
Methods in sk.antons.json.parse with parameters of type PathMatcher Modifier and Type Method Description static List<JsonLiteral>LiteralParser. all(JsonSource source, PathMatcher matcher)All literals with mathed path.static List<String>LiteralParser. allAsString(JsonSource source, PathMatcher matcher)All literals with mathed path converted to string.static JsonLiteralLiteralParser. first(JsonSource source, PathMatcher matcher)First literal with mathed path.static StringLiteralParser. firstAsString(JsonSource source, PathMatcher matcher)First literal with mathed path converted to string.
-