Enum PluginSettings.StartPage
- java.lang.Object
-
- java.lang.Enum<PluginSettings.StartPage>
-
- com.trivago.cluecumber.engine.constants.PluginSettings.StartPage
-
- All Implemented Interfaces:
Serializable,Comparable<PluginSettings.StartPage>
- Enclosing class:
- PluginSettings
public static enum PluginSettings.StartPage extends Enum<PluginSettings.StartPage>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_FEATURESALL_SCENARIOSALL_STEPSALL_TAGSSCENARIO_SEQUENCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPageName()static PluginSettings.StartPagevalueOf(String name)Returns the enum constant of this type with the specified name.static PluginSettings.StartPage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_SCENARIOS
public static final PluginSettings.StartPage ALL_SCENARIOS
-
SCENARIO_SEQUENCE
public static final PluginSettings.StartPage SCENARIO_SEQUENCE
-
ALL_TAGS
public static final PluginSettings.StartPage ALL_TAGS
-
ALL_STEPS
public static final PluginSettings.StartPage ALL_STEPS
-
ALL_FEATURES
public static final PluginSettings.StartPage ALL_FEATURES
-
-
Method Detail
-
values
public static PluginSettings.StartPage[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PluginSettings.StartPage c : PluginSettings.StartPage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PluginSettings.StartPage valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getPageName
public String getPageName()
-
-