public static enum IpAssignment.AssignmentStatus extends java.lang.Enum<IpAssignment.AssignmentStatus>
| Enum Constant and Description |
|---|
Option_Assigned
IP has been assigned to a host.
|
Option_Expired
IP mapping is no longer active.
|
Option_RangeNotEnforced
Static IP Assignment with unregistered IP range.
|
Option_Requested
IP has been requested by a host, but not assigned to it yet.
|
| Modifier and Type | Method and Description |
|---|---|
static IpAssignment.AssignmentStatus |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null