public static enum PathUtils.ReportsDirectory extends Enum<PathUtils.ReportsDirectory>
| Enum Constant and Description |
|---|
ARTIFACT |
FAILSAFE_1 |
FAILSAFE_2 |
FAILSAFE_3 |
SUREFIRE_1 |
SUREFIRE_2 |
SUREFIRE_3 |
SUREFIRE_4 |
| Modifier and Type | Method and Description |
|---|---|
static PathUtils.ReportsDirectory |
fromObject(Object obj)
Get the reports directory constant for the specified test class object.
|
String |
getFolder()
Get the name of the folder associated with this constant.
|
Path |
getPath()
Get the resolved Maven-derived path associated with this constant.
|
static Path |
getPathForObject(Object obj)
Get reports directory path for the specified test class object.
|
String |
getRegEx()
Get the regular expression that matches class names for this constant.
|
static PathUtils.ReportsDirectory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathUtils.ReportsDirectory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathUtils.ReportsDirectory SUREFIRE_1
public static final PathUtils.ReportsDirectory SUREFIRE_2
public static final PathUtils.ReportsDirectory SUREFIRE_3
public static final PathUtils.ReportsDirectory SUREFIRE_4
public static final PathUtils.ReportsDirectory FAILSAFE_1
public static final PathUtils.ReportsDirectory FAILSAFE_2
public static final PathUtils.ReportsDirectory FAILSAFE_3
public static final PathUtils.ReportsDirectory ARTIFACT
public static PathUtils.ReportsDirectory[] values()
for (PathUtils.ReportsDirectory c : PathUtils.ReportsDirectory.values()) System.out.println(c);
public static PathUtils.ReportsDirectory 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 getRegEx()
public String getFolder()
public Path getPath()
public static PathUtils.ReportsDirectory fromObject(Object obj)
obj - test class objectCopyright © 2017. All rights reserved.