public enum ExclusionType extends Enum<ExclusionType>
Enum Constant and Description |
---|
FILE
Constant indicating that this exclusion only excludes folders.
|
FOLDER
Constant indicating that this exclusion only excludes folders.
|
RESOURCE
Constant indicating that this exclusion can exclude any resource.
|
Modifier and Type | Method and Description |
---|---|
static ExclusionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExclusionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExclusionType FILE
public static final ExclusionType FOLDER
public static final ExclusionType RESOURCE
public static ExclusionType[] values()
for (ExclusionType c : ExclusionType.values()) System.out.println(c);
public static ExclusionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright (c) IBM Corp. and others 2004, 2020. All Rights Reserved.