public enum ProxyScheme extends Enum<ProxyScheme>
ProxyServerConfig.| Enum Constant and Description |
|---|
HTTP
Represents HTTP scheme.
|
HTTPS
Represents HTTPS scheme.
|
| Modifier and Type | Method and Description |
|---|---|
static ProxyScheme |
get(String proxyScheme)
Returns the instance of
ProxyScheme for the input string. |
static ProxyScheme |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProxyScheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProxyScheme HTTP
public static final ProxyScheme HTTPS
public static ProxyScheme[] values()
for (ProxyScheme c : ProxyScheme.values()) System.out.println(c);
public static ProxyScheme 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 nullpublic static ProxyScheme get(String proxyScheme)
ProxyScheme for the input string.proxyScheme - Copyright © 2023 Adobe. All rights reserved.