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 a ParseResult from a string between two provided bounds.
  • Method Summary

    Modifier and Type
    Method
    Description
    parse(int startPosition, int endPosition)
    Parse a JMESPath string between the start position (inclusive) and end position (exclusive).
  • Method Details

    • parse

      ParseResult<T> parse(int startPosition, int endPosition)
      Parse a JMESPath string between the start position (inclusive) and end position (exclusive).