public enum TakeScreenshots extends 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(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 DISABLED
public static final TakeScreenshots UNDEFINED
public static TakeScreenshots[] values()
for (TakeScreenshots c : TakeScreenshots.values()) System.out.println(c);
public static TakeScreenshots 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 © 2023. All rights reserved.