public enum CucumberReportError extends Enum<CucumberReportError>
| Enum Constant and Description |
|---|
INVALID_CONFIG_FILE |
NO_CONFIG_FILE |
NO_OUTPUT_DIRECTORY |
NO_OUTPUT_NAME |
NO_SOURCE_FILE |
NON_EXISTING_CONFIG_FILE |
NON_EXISTING_SOURCE_FILE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static CucumberReportError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CucumberReportError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CucumberReportError NO_SOURCE_FILE
public static final CucumberReportError NON_EXISTING_SOURCE_FILE
public static final CucumberReportError NO_OUTPUT_DIRECTORY
public static final CucumberReportError NO_OUTPUT_NAME
public static final CucumberReportError NO_CONFIG_FILE
public static final CucumberReportError NON_EXISTING_CONFIG_FILE
public static final CucumberReportError INVALID_CONFIG_FILE
private String value
public static CucumberReportError[] values()
for (CucumberReportError c : CucumberReportError.values()) System.out.println(c);
public static CucumberReportError 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<CucumberReportError>Copyright © 2013-2017. All Rights Reserved.