public enum UnitFramework extends Enum<UnitFramework>
| Modifier and Type | Method and Description |
|---|---|
static UnitFramework |
fromString(String value) |
static UnitFramework |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnitFramework[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnitFramework TESTNG
public static final UnitFramework JUNIT4
public static final UnitFramework JUNIT5
public static UnitFramework[] values()
for (UnitFramework c : UnitFramework.values()) System.out.println(c);
public static UnitFramework 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 static UnitFramework fromString(String value)
Copyright © 2008–2019 ConSol Software GmbH. All rights reserved.