public enum ReportType extends Enum<ReportType>
| Enum Constant and Description |
|---|
CSV
CSV files.
|
HTML
HTML reports.
|
JSON
JSON reports.
|
JUNIT
JUnit XML reports.
|
ROOT
report name with no suffix.
|
XML
XML reports.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ReportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportType ROOT
public static final ReportType XML
public static final ReportType CSV
public static final ReportType HTML
public static final ReportType JSON
public static final ReportType JUNIT
public static ReportType[] values()
for (ReportType c : ReportType.values()) System.out.println(c);
public static ReportType 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 toString()
toString in class Enum<ReportType>Copyright © 2023. All rights reserved.