Class MatchResult


  • public class MatchResult
    extends Object
    A MatchResult instance represents the result of matching a Pattern against a Path.
    • Method Detail

      • getRemainder

        public Path getRemainder()
        Returns the remaining path after the matching part.
        Returns:
        The remaining path after the matching part such that the path constructed from getMatch() followed by getRemainder() is the original path or null if isFullMatch() is true.
      • getMatchPos

        public int getMatchPos()
        Returns the position of the match
        Returns:
      • getMatchLength

        public int getMatchLength()
        Returns the number of elements which where matched by the Pattern.
        Returns:
      • isMatch

        public boolean isMatch()
        Returns true if the Pattern matched anything or false otherwise.
        Returns:
      • isFullMatch

        public boolean isFullMatch()
        Returns true if the Pattern matched the whole Path.
        Returns: