Interface IMatchHandle

All Known Implementing Classes:
MatchHandle, RegExprMatchHandle

public interface IMatchHandle
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    To check if the string is matched.
    To process the string.
  • Method Details

    • matches

      boolean matches(String s)
      To check if the string is matched.

      Parameters:
      s - The string to be checked.

      Returns:
      true if the string is matched; false otherwise.
    • process

      String process(String s)
      To process the string.

      Parameters:
      s - The string to be processed.

      Returns:
      The processed string.