public static enum IpAssignment.AssignmentStatus extends Enum<IpAssignment.AssignmentStatus>
| Enum Constant and Description | 
|---|
| Option_AssignedIP has been assigned to a host. | 
| Option_ExpiredIP mapping is no longer active. | 
| Option_RangeNotEnforcedStatic IP Assignment with unregistered IP range. | 
| Option_RequestedIP has been requested by a host, but not assigned to it yet. | 
| Modifier and Type | Method and Description | 
|---|---|
| static IpAssignment.AssignmentStatus | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static IpAssignment.AssignmentStatus[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final IpAssignment.AssignmentStatus Option_Requested
public static final IpAssignment.AssignmentStatus Option_RangeNotEnforced
public static final IpAssignment.AssignmentStatus Option_Assigned
public static final IpAssignment.AssignmentStatus Option_Expired
public static IpAssignment.AssignmentStatus[] values()
for (IpAssignment.AssignmentStatus c : IpAssignment.AssignmentStatus.values()) System.out.println(c);
public static IpAssignment.AssignmentStatus 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 null