public enum SharedDriverStrategy extends Enum<SharedDriverStrategy>
| Enum Constant and Description |
|---|
ONCE |
PER_CLASS |
PER_METHOD |
| Modifier and Type | Method and Description |
|---|---|
static SharedDriverStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SharedDriverStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharedDriverStrategy ONCE
public static final SharedDriverStrategy PER_CLASS
public static final SharedDriverStrategy PER_METHOD
public static SharedDriverStrategy[] values()
for (SharedDriverStrategy c : SharedDriverStrategy.values()) System.out.println(c);
public static SharedDriverStrategy 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 © 2016 FluentLenium. All Rights Reserved.