public enum TakeScreenshots extends java.lang.Enum<TakeScreenshots>
Enum Constant and Description |
---|
AFTER_EACH_STEP |
BEFORE_AND_AFTER_EACH_STEP |
DISABLED |
FOR_EACH_ACTION |
FOR_FAILURES |
UNDEFINED |
Modifier and Type | Method and Description |
---|---|
static TakeScreenshots |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TakeScreenshots[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TakeScreenshots FOR_EACH_ACTION
public static final TakeScreenshots BEFORE_AND_AFTER_EACH_STEP
public static final TakeScreenshots AFTER_EACH_STEP
public static final TakeScreenshots FOR_FAILURES
public static final TakeScreenshots UNDEFINED
public static final TakeScreenshots DISABLED
public static TakeScreenshots[] values()
for (TakeScreenshots c : TakeScreenshots.values()) System.out.println(c);
public static TakeScreenshots 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