public static enum RetryTest.ReportType extends Enum<RetryTest.ReportType>
| Enum Constant and Description |
|---|
code |
debug |
fail |
info |
pass |
warning |
| Modifier and Type | Method and Description |
|---|---|
static RetryTest.ReportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RetryTest.ReportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RetryTest.ReportType pass
public static final RetryTest.ReportType info
public static final RetryTest.ReportType warning
public static final RetryTest.ReportType debug
public static final RetryTest.ReportType fail
public static final RetryTest.ReportType code
public static RetryTest.ReportType[] values()
for (RetryTest.ReportType c : RetryTest.ReportType.values()) System.out.println(c);
public static RetryTest.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 nullCopyright © 2021. All rights reserved.