public static enum RestFixture.Runner extends Enum<RestFixture.Runner>
| Enum Constant and Description |
|---|
FIT
the fit runner
|
OTHER
any other runner
|
SLIM
the slim runner
|
| Modifier and Type | Method and Description |
|---|---|
static RestFixture.Runner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestFixture.Runner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestFixture.Runner SLIM
public static final RestFixture.Runner FIT
public static final RestFixture.Runner OTHER
public static RestFixture.Runner[] values()
for (RestFixture.Runner c : RestFixture.Runner.values()) System.out.println(c);
public static RestFixture.Runner 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 © 2017 smartrics. All rights reserved.