public enum PrivateNetworkRequestPolicy extends Enum<PrivateNetworkRequestPolicy>
| Enum Constant and Description |
|---|
ALLOW |
BLOCK_FROM_INSECURE_TO_MORE_PRIVATE |
WARN_FROM_INSECURE_TO_MORE_PRIVATE |
| Modifier and Type | Method and Description |
|---|---|
static PrivateNetworkRequestPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrivateNetworkRequestPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrivateNetworkRequestPolicy ALLOW
public static final PrivateNetworkRequestPolicy BLOCK_FROM_INSECURE_TO_MORE_PRIVATE
public static final PrivateNetworkRequestPolicy WARN_FROM_INSECURE_TO_MORE_PRIVATE
public static PrivateNetworkRequestPolicy[] values()
for (PrivateNetworkRequestPolicy c : PrivateNetworkRequestPolicy.values()) System.out.println(c);
public static PrivateNetworkRequestPolicy 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 nullCopyright © 2021 Kenan Klisura. All rights reserved.