public static enum TestConfig.ReporterType extends Enum<TestConfig.ReporterType>
Modifier and Type | Method and Description |
---|---|
static TestConfig.ReporterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestConfig.ReporterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestConfig.ReporterType CONSOLE
public static final TestConfig.ReporterType CSV
public static final TestConfig.ReporterType CSVSINGLE
public static final TestConfig.ReporterType PERFREPO
public static TestConfig.ReporterType[] values()
for (TestConfig.ReporterType c : TestConfig.ReporterType.values()) System.out.println(c);
public static TestConfig.ReporterType 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 © 2001–2019 JBoss by Red Hat. All rights reserved.