proguard.util |
This package contains utility classes for regular expression matching,...
|
Java Source File Name | Type | Comment |
AndMatcher.java | Class | This StringMatcher tests whether strings matches both given StringMatcher
instances. |
ClassNameParser.java | Class | This StringParser can create StringMatcher instances for regular expressions
matching internal class names (or descriptors containing class names). |
EmptyStringMatcher.java | Class | This StringMatcher tests whether strings are empty. |
ExtensionMatcher.java | Class | This StringMatcher tests whether strings end in a given extension, ignoring
its case. |
FileNameParser.java | Class | This StringParser can create StringMatcher instances for regular expressions
matching file names. |
FixedStringMatcher.java | Class | This StringMatcher tests whether strings start with a given fixed string
and then match another given StringMatcher. |
ListMatcher.java | Class | This StringMatcher tests whether strings match a given list of StringMatcher
instances. |
ListParser.java | Class | This StringParser can create StringMatcher instances for regular expressions.
The regular expressions are either presented as a list, or they are
interpreted as comma-separated lists, optionally prefixed with '!' negators.
If an entry with a negator matches, a negative match is returned, without
considering any subsequent entries in the list. |
ListUtil.java | Class | This class provides some utility methods for working with
java.util.List objects. |
NameParser.java | Class | This StringParser can create StringMatcher instances for regular expressions
matching names. |
NotMatcher.java | Class | This StringMatcher tests whether strings does not match the given
StringMatcher. |
OrMatcher.java | Class | This StringMatcher tests whether strings matches either of the given
StringMatcher instances. |
SettableMatcher.java | Class | This StringMatcher delegates to a another StringMatcher that can be set
after this StringMatcher has been constructed. |
StringMatcher.java | Interface | This interface provides a method to determine whether strings match a given
criterion, which is specified by the implementation. |
StringParser.java | Interface | This interface provides a method to create a SringMatcher for a given
regular expression. |
VariableStringMatcher.java | Class | This StringMatcher tests whether strings start with a specified variable
string and then match another given StringMatcher. |