Package proguard.util

Class StringMatcher

java.lang.Object
proguard.util.StringMatcher
Direct Known Subclasses:
AndMatcher, CollectionMatcher, ConstantMatcher, EmptyStringMatcher, ExtensionMatcher, FixedStringMatcher, ListMatcher, MatchedStringMatcher, NotMatcher, OrMatcher, SettableMatcher, TransformedStringMatcher, VariableStringMatcher

public abstract class StringMatcher extends Object
This abstract class provides methods to determine whether strings match a given criterion, which is specified by the implementation.
  • Constructor Details

    • StringMatcher

      public StringMatcher()
  • Method Details

    • matches

      public boolean matches(String string)
      Checks whether the given string matches.
      Parameters:
      string - the string to match.
      Returns:
      a boolean indicating whether the string matches the criterion.
    • prefix

      public String prefix()
      Returns a common prefix of all strings matched by this StringMatcher. If the returned value is null, then this StringMatcher does not match any string.
    • matches

      protected abstract boolean matches(String string, int beginOffset, int endOffset)
      Checks whether the given substring matches.
      Parameters:
      string - the string to match.
      beginOffset - the start offset of the substring (inclusive).
      endOffset - the end offset of the substring (exclusive).
      Returns:
      a boolean indicating whether the substring matches the criterion.