ProGuard

proguard.util
Interface StringMatcher

All Known Implementing Classes:
BasicListMatcher, BasicMatcher, ExtensionMatcher

public interface StringMatcher

This interface provides a method to determine whether strings match a given criterion, which is specified by the implementation.


Method Summary
 boolean matches(String string)
          Checks whether the given string matches.
 

Method Detail

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.

ProGuard