Package net.webpdf.wsclient.openapi
Enum ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum
- java.lang.Object
-
- java.lang.Enum<ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum>
-
- net.webpdf.wsclient.openapi.ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum>
- Enclosing class:
- ApplicationConfigChromiumBridgeCommandLineSwitch
public static enum ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum extends Enum<ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum>
Defines the operation mode for the command line switch. * ADD = add the command line switch * REMOVE = remove the command line switch
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnumfromValue(String value)StringgetValue()StringtoString()static ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD
public static final ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum ADD
-
REMOVE
public static final ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum REMOVE
-
-
Method Detail
-
values
public static ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum[] 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 (ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum c : ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum>
-
fromValue
public static ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum fromValue(String value)
-
-