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