public enum CucumberArguments extends Enum<CucumberArguments>
| Enum Constant and Description |
|---|
DryRun |
Glue |
Monochrome |
Plugin |
ScenarioName |
Strict |
Tags |
| Modifier and Type | Method and Description |
|---|---|
String |
getArg() |
static CucumberArguments |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CucumberArguments[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CucumberArguments DryRun
public static final CucumberArguments Plugin
public static final CucumberArguments Tags
public static final CucumberArguments Monochrome
public static final CucumberArguments Glue
public static final CucumberArguments Strict
public static final CucumberArguments ScenarioName
public static CucumberArguments[] values()
for (CucumberArguments c : CucumberArguments.values()) System.out.println(c);
public static CucumberArguments 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 getArg()
Copyright © 2018. All rights reserved.