public enum TestCategory extends Enum<TestCategory>
| Enum Constant and Description |
|---|
FUNCTIONAL |
PERFORMANCE |
UNIT |
| Modifier and Type | Method and Description |
|---|---|
static TestCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCategory FUNCTIONAL
public static final TestCategory PERFORMANCE
public static final TestCategory UNIT
public static TestCategory[] values()
for (TestCategory c : TestCategory.values()) System.out.println(c);
public static TestCategory 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 © 2016 Etnetera a.s.. All rights reserved.