Enum PluginSettings.CustomParamDisplayMode
- java.lang.Object
-
- java.lang.Enum<PluginSettings.CustomParamDisplayMode>
-
- com.trivago.cluecumber.engine.constants.PluginSettings.CustomParamDisplayMode
-
- All Implemented Interfaces:
Serializable,Comparable<PluginSettings.CustomParamDisplayMode>
- Enclosing class:
- PluginSettings
public static enum PluginSettings.CustomParamDisplayMode extends Enum<PluginSettings.CustomParamDisplayMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_PAGESSCENARIO_PAGES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PluginSettings.CustomParamDisplayModevalueOf(String name)Returns the enum constant of this type with the specified name.static PluginSettings.CustomParamDisplayMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCENARIO_PAGES
public static final PluginSettings.CustomParamDisplayMode SCENARIO_PAGES
-
ALL_PAGES
public static final PluginSettings.CustomParamDisplayMode ALL_PAGES
-
-
Method Detail
-
values
public static PluginSettings.CustomParamDisplayMode[] 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.CustomParamDisplayMode c : PluginSettings.CustomParamDisplayMode.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.CustomParamDisplayMode 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
-
-