public enum ConstructionStrategy extends java.lang.Enum<ConstructionStrategy>
| Enum Constant and Description |
|---|
CONSTRUCTOR_WITH_PARAMETERS |
DEFAULT_CONSTRUCTOR |
STEP_LIBRARY_WITH_PAGES |
STEP_LIBRARY_WITH_WEBDRIVER |
| Modifier and Type | Method and Description |
|---|---|
static ConstructionStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConstructionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstructionStrategy DEFAULT_CONSTRUCTOR
public static final ConstructionStrategy STEP_LIBRARY_WITH_WEBDRIVER
public static final ConstructionStrategy STEP_LIBRARY_WITH_PAGES
public static final ConstructionStrategy CONSTRUCTOR_WITH_PARAMETERS
public static ConstructionStrategy[] values()
for (ConstructionStrategy c : ConstructionStrategy.values()) System.out.println(c);
public static ConstructionStrategy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null