Package proguard.util

Class FixedStringMatcher

java.lang.Object
proguard.util.StringMatcher
proguard.util.FixedStringMatcher

public class FixedStringMatcher extends StringMatcher
This StringMatcher tests whether strings start with a given fixed string and then match another optional given StringMatcher.
  • Constructor Details

    • FixedStringMatcher

      public FixedStringMatcher(String fixedString)
      Creates a new FixedStringMatcher.
      Parameters:
      fixedString - the string to match.
    • FixedStringMatcher

      public FixedStringMatcher(String fixedString, StringMatcher nextMatcher)
      Creates a new FixedStringMatcher.
      Parameters:
      fixedString - the string prefix to match.
      nextMatcher - an optional string matcher to match the remainder of the string.
  • Method Details

    • prefix

      public String prefix()
      Description copied from class: StringMatcher
      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.
      Overrides:
      prefix in class StringMatcher
    • matches

      protected boolean matches(String string, int beginOffset, int endOffset)
      Description copied from class: StringMatcher
      Checks whether the given substring matches.
      Specified by:
      matches in class StringMatcher
      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.