See: Description
| Interface | Description |
|---|---|
| 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 | Description |
|---|---|
| AndMatcher |
This StringMatcher tests whether strings matches both given StringMatcher
instances.
|
| ArrayUtil |
This class contains utility methods operating on arrays.
|
| 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.
|
| ObjectUtil |
This class contains utility methods operating on objects.
|
| 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.
|
Copyright © 2015. All Rights Reserved.