Interface Parser<T>
-
- All Known Implementing Classes:
CompositeParser
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Parser<T>
A JMESPath parser, for generating aParseResultfrom a string between two provided bounds.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParseResult<T>parse(int startPosition, int endPosition)Parse a JMESPath string between the start position (inclusive) and end position (exclusive).
-
-
-
Method Detail
-
parse
ParseResult<T> parse(int startPosition, int endPosition)
Parse a JMESPath string between the start position (inclusive) and end position (exclusive).
-
-