Package net.webpdf.wsclient.openapi
Class ApplicationConfigChromiumBridgeCommandLineSwitch
- java.lang.Object
-
- net.webpdf.wsclient.openapi.ApplicationConfigChromiumBridgeCommandLineSwitch
-
public class ApplicationConfigChromiumBridgeCommandLineSwitch extends Object
Defines a single command line switch for the Chromium process. This switch consists of a name for the switch and an associated value.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnumDefines the operation mode for the command line switch
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_MODEstatic StringJSON_PROPERTY_NAMEstatic StringJSON_PROPERTY_VALUE
-
Constructor Summary
Constructors Constructor Description ApplicationConfigChromiumBridgeCommandLineSwitch()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)@Nullable ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnumgetMode()Defines the operation mode for the command line switch@Nullable StringgetName()Sets the name of the Chromium command line switch.@Nullable StringgetValue()Defines the value of the Chromium command line switch.inthashCode()ApplicationConfigChromiumBridgeCommandLineSwitchmode(ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum mode)ApplicationConfigChromiumBridgeCommandLineSwitchname(String name)voidsetMode(ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum mode)voidsetName(String name)voidsetValue(String value)StringtoString()ApplicationConfigChromiumBridgeCommandLineSwitchvalue(String value)
-
-
-
Field Detail
-
JSON_PROPERTY_MODE
public static final String JSON_PROPERTY_MODE
- See Also:
- Constant Field Values
-
JSON_PROPERTY_NAME
public static final String JSON_PROPERTY_NAME
- See Also:
- Constant Field Values
-
JSON_PROPERTY_VALUE
public static final String JSON_PROPERTY_VALUE
- See Also:
- Constant Field Values
-
-
Method Detail
-
mode
public ApplicationConfigChromiumBridgeCommandLineSwitch mode(ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum mode)
-
getMode
@Nullable public @Nullable ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum getMode()
Defines the operation mode for the command line switch. * ADD = add the command line switch * REMOVE = remove the command line switch- Returns:
- mode
-
setMode
public void setMode(ApplicationConfigChromiumBridgeCommandLineSwitch.ModeEnum mode)
-
name
public ApplicationConfigChromiumBridgeCommandLineSwitch name(String name)
-
getName
@Nullable public @Nullable String getName()
Sets the name of the Chromium command line switch. The name must be spelled correctly (without \"--\" and in correct upper/lower case), because it will be used unchanged.- Returns:
- name
-
setName
public void setName(String name)
-
value
public ApplicationConfigChromiumBridgeCommandLineSwitch value(String value)
-
getValue
@Nullable public @Nullable String getValue()
Defines the value of the Chromium command line switch. The value for the switch is used unchanged and must be escaped properly.- Returns:
- value
-
setValue
public void setValue(String value)
-
-