Tests whether the specified fully qualified name matches at least one of the specified patterns.
In Java, fully qualified names are attributes of program elements (that is classes and members). The fully qualified name of a program element is its name extended from the left with the name of the package it belongs to. |
qualifiedName
The fully qualified name to be tested.
pattern
Specify the pattern to be matched to.A pattern can be any package name, or can be the start of any package name followed by an asterisk (
*
). The asterisk is a wildcard meaning "match any characters". This is the only wildcard allowed.
patterns
Specify an array of alternative patterns.Returns:The qualified name must match at least one of the specified patterns.
If the specified array is empty or
null
, the function returnsfalse
.
true
- the qualified name matches at least one of the specified patterns;false
otherwise