Parameter | Matches |
*
|
any package name |
pack1.pack2
|
only pack1.pack2
|
pack1.p*
|
any subpackages of pack1 that start with "p "
|
public
or package
.
Only classes matching the specified access modifier will match the exclusion parameter.
Parameter | Matches |
*
|
any class name |
Class1
|
only Class1
|
C*
|
any class name starting with "C "
|
public
, protected
, package
or private
.
Only fields matching the specified access modifier will match the exclusion parameter.
Parameter | Matches |
*
|
any field name |
field1
|
only field1
|
f*
|
any field name starting with "f "
|
int
or a fully qualified class name such as java.lang.String
. You cannot use wildcards.