public static enum ConfigurationProperties.TriggerMode extends Enum<ConfigurationProperties.TriggerMode>
| Enum Constant and Description |
|---|
AUTOMATIC_ON_FAIL
Take screenshot when the test fail.
|
DEFAULT
Default value.
|
MANUAL
Only take screenshot manually through API.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationProperties.TriggerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationProperties.TriggerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationProperties.TriggerMode AUTOMATIC_ON_FAIL
public static final ConfigurationProperties.TriggerMode MANUAL
public static final ConfigurationProperties.TriggerMode DEFAULT
public static ConfigurationProperties.TriggerMode[] values()
for (ConfigurationProperties.TriggerMode c : ConfigurationProperties.TriggerMode.values()) System.out.println(c);
public static ConfigurationProperties.TriggerMode 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.