public enum NetworkPeeringGatewayUse extends Enum<NetworkPeeringGatewayUse>
| Enum Constant and Description |
|---|
BY_REMOTE_NETWORK
The remote network is allowed to use this network's gateway (but not necessarily using it currently).
|
NONE
No gateway use is configured.
|
ON_REMOTE_NETWORK
This network is configured to use the remote network's gateway.
|
| Modifier and Type | Method and Description |
|---|---|
static NetworkPeeringGatewayUse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NetworkPeeringGatewayUse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetworkPeeringGatewayUse BY_REMOTE_NETWORK
public static final NetworkPeeringGatewayUse ON_REMOTE_NETWORK
public static final NetworkPeeringGatewayUse NONE
public static NetworkPeeringGatewayUse[] values()
for (NetworkPeeringGatewayUse c : NetworkPeeringGatewayUse.values()) System.out.println(c);
public static NetworkPeeringGatewayUse 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 © 2019. All rights reserved.