public enum IpAddressAllocationMode extends Enum<IpAddressAllocationMode>
Enum Constant and Description |
---|
DHCP
IP address assigned by DHCP
|
MANUAL
static IP address assigned manually
|
NONE
no IP addressing mode specified
|
POOL
static IP address allocated from a pool
|
Modifier and Type | Method and Description |
---|---|
static IpAddressAllocationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IpAddressAllocationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IpAddressAllocationMode NONE
public static final IpAddressAllocationMode MANUAL
public static final IpAddressAllocationMode POOL
public static final IpAddressAllocationMode DHCP
public static IpAddressAllocationMode[] values()
for (IpAddressAllocationMode c : IpAddressAllocationMode.values()) System.out.println(c);
public static IpAddressAllocationMode 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 © 2009-2012 jclouds. All Rights Reserved.