Class TextMatch

java.lang.Object
com.hp.lft.sdk.web.TextMatch

public class TextMatch extends Object
Class defining a text match we are looking for.
Usage example:
TextMatch textMatch = TextMatch.match("some text");
TextMatch textMatch = TextMatch.match("some text", 2);
  • Field Details

    • text

      protected String text
    • textOccurrence

      protected Integer textOccurrence
  • Constructor Details

    • TextMatch

      protected TextMatch()
  • Method Details

    • match

      public static TextMatch match(String text)
      Returns the text match object which can be used to find the first match of the specified text.
      Parameters:
      text - the text to search for.
      Returns:
      the text match object which can be used to find the first match of the specified text.
    • match

      public static TextMatch match(String text, int textOccurrence)
      Returns the text match object which can be used to find the n-th match of the specified text.
      Parameters:
      text - the text to search for.
      textOccurrence - 0-based ordinal number of the text's occurrence.
      Returns:
      the text match object which can be used to find the n-th match of the specified text.