Package proguard.util

This package contains utility classes for regular expression matching,...

See:
          Description

Interface Summary
StringMatcher This interface provides a method to determine whether strings match a given criterion, which is specified by the implementation.
StringParser This interface provides a method to create a SringMatcher for a given regular expression.
 

Class Summary
AndMatcher This StringMatcher tests whether strings matches both given StringMatcher instances.
ClassNameParser This StringParser can create StringMatcher instances for regular expressions matching internal class names (or descriptors containing class names).
ConstantMatcher This StringMatcher matches any string or no string at all.
EmptyStringMatcher This StringMatcher tests whether strings are empty.
ExtensionMatcher This StringMatcher tests whether strings end in a given extension, ignoring its case.
FileNameParser This StringParser can create StringMatcher instances for regular expressions matching file names.
FixedStringMatcher This StringMatcher tests whether strings start with a given fixed string and then match another optional given StringMatcher.
ListMatcher This StringMatcher tests whether strings match a given list of StringMatcher instances.
ListParser This StringParser can create StringMatcher instances for regular expressions.
ListUtil This class provides some utility methods for working with java.util.List objects.
NameParser This StringParser can create StringMatcher instances for regular expressions matching names.
NotMatcher This StringMatcher tests whether strings does not match the given StringMatcher.
OrMatcher This StringMatcher tests whether strings matches either of the given StringMatcher instances.
SettableMatcher This StringMatcher delegates to a another StringMatcher that can be set after this StringMatcher has been constructed.
VariableStringMatcher This StringMatcher tests whether strings start with a specified variable string and then match another given StringMatcher.
 

Package proguard.util Description

This package contains utility classes for regular expression matching,...