Uses of Class
software.amazon.awssdk.codegen.jmespath.parser.util.CompositeParser
-
Packages that use CompositeParser Package Description software.amazon.awssdk.codegen.jmespath.parser.util -
-
Uses of CompositeParser in software.amazon.awssdk.codegen.jmespath.parser.util
Methods in software.amazon.awssdk.codegen.jmespath.parser.util that return CompositeParser Modifier and Type Method Description static <T> CompositeParser<T>
CompositeParser. firstTry(Parser<T> parser)
Create aCompositeParser
that tries the provided parser first.static <T,U>
CompositeParser<U>CompositeParser. firstTry(Parser<T> parser, Function<T,U> resultConverter)
Create aCompositeParser
that tries the provided parser first, converting the result of that parser using the provided function.<S> CompositeParser<T>
CompositeParser. thenTry(Parser<S> nextParser, Function<S,T> resultConverter)
Create a newCompositeParser
that tries the provided parser after all previous parsers, converting the result of that parser using the provided function.CompositeParser<T>
CompositeParser. thenTry(Parser<T> nextParser)
Create a newCompositeParser
that tries the provided parser after all previous parsers.
-