public enum TestSourceType extends Enum<TestSourceType>
| Enum Constant and Description |
|---|
TEST_SOURCE_CUCUMBER |
TEST_SOURCE_JBEHAVE |
TEST_SOURCE_JUNIT |
TEST_SOURCE_JUNIT5 |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static TestSourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestSourceType TEST_SOURCE_JUNIT
public static final TestSourceType TEST_SOURCE_JBEHAVE
public static final TestSourceType TEST_SOURCE_CUCUMBER
public static final TestSourceType TEST_SOURCE_JUNIT5
public static TestSourceType[] values()
for (TestSourceType c : TestSourceType.values()) System.out.println(c);
public static TestSourceType 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 nullpublic String getValue()
Copyright © 2022. All rights reserved.