public enum Configuration extends Enum<Configuration>
Enum Constant and Description |
---|
INCLUDES |
INCLUDES_EXCLUDES |
INCLUDES_EXCLUDES_FILE |
INCLUDES_FILE |
TEST |
Modifier and Type | Method and Description |
---|---|
static Configuration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration TEST
public static final Configuration INCLUDES
public static final Configuration INCLUDES_FILE
public static final Configuration INCLUDES_EXCLUDES
public static final Configuration INCLUDES_EXCLUDES_FILE
public static Configuration[] values()
for (Configuration c : Configuration.values()) System.out.println(c);
public static Configuration 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 © 2004–2015 The Apache Software Foundation. All rights reserved.