public static enum ScanSpec.ScanSpecPathMatch extends java.lang.Enum<ScanSpec.ScanSpecPathMatch>
| Enum Constant and Description |
|---|
ANCESTOR_OF_ACCEPTED_PATH
Path is an ancestor of an accepted path.
|
AT_ACCEPTED_CLASS_PACKAGE
Path is the package of a specifically-accepted class.
|
AT_ACCEPTED_PATH
Path is accepted.
|
HAS_ACCEPTED_PATH_PREFIX
Path starts with an accepted path prefix.
|
HAS_REJECTED_PATH_PREFIX
Path starts with (or is) a rejected path prefix.
|
NOT_WITHIN_ACCEPTED_PATH
Path is not accepted and not rejected.
|
| Modifier and Type | Method and Description |
|---|---|
static ScanSpec.ScanSpecPathMatch |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScanSpec.ScanSpecPathMatch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanSpec.ScanSpecPathMatch HAS_REJECTED_PATH_PREFIX
public static final ScanSpec.ScanSpecPathMatch HAS_ACCEPTED_PATH_PREFIX
public static final ScanSpec.ScanSpecPathMatch AT_ACCEPTED_PATH
public static final ScanSpec.ScanSpecPathMatch ANCESTOR_OF_ACCEPTED_PATH
public static final ScanSpec.ScanSpecPathMatch AT_ACCEPTED_CLASS_PACKAGE
public static final ScanSpec.ScanSpecPathMatch NOT_WITHIN_ACCEPTED_PATH
public static ScanSpec.ScanSpecPathMatch[] values()
for (ScanSpec.ScanSpecPathMatch c : ScanSpec.ScanSpecPathMatch.values()) System.out.println(c);
public static ScanSpec.ScanSpecPathMatch valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null