public enum RuleKeyType extends Enum<RuleKeyType>
Enum Constant and Description |
---|
CONTENT_AGNOSTIC |
DEFAULT |
DEP_FILE |
INPUT |
MANIFEST |
Modifier and Type | Method and Description |
---|---|
static RuleKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuleKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuleKeyType DEFAULT
public static final RuleKeyType INPUT
public static final RuleKeyType DEP_FILE
public static final RuleKeyType MANIFEST
public static final RuleKeyType CONTENT_AGNOSTIC
public static RuleKeyType[] values()
for (RuleKeyType c : RuleKeyType.values()) System.out.println(c);
public static RuleKeyType 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 null