public static enum DHCP6.MsgType extends java.lang.Enum<DHCP6.MsgType>
Enum Constant and Description |
---|
ADVERTISE |
CONFIRM |
DECLINE |
INFORMATION_REQUEST |
REBIND |
RECONFIGURE |
RELAY_FORW |
RELAY_REPL |
RELEASE |
RENEW |
REPLY |
REQUEST |
SOLICIT |
Modifier and Type | Field and Description |
---|---|
protected byte |
value |
Modifier and Type | Method and Description |
---|---|
byte |
value() |
static DHCP6.MsgType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DHCP6.MsgType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DHCP6.MsgType SOLICIT
public static final DHCP6.MsgType ADVERTISE
public static final DHCP6.MsgType REQUEST
public static final DHCP6.MsgType CONFIRM
public static final DHCP6.MsgType RENEW
public static final DHCP6.MsgType REBIND
public static final DHCP6.MsgType REPLY
public static final DHCP6.MsgType RELEASE
public static final DHCP6.MsgType DECLINE
public static final DHCP6.MsgType RECONFIGURE
public static final DHCP6.MsgType INFORMATION_REQUEST
public static final DHCP6.MsgType RELAY_FORW
public static final DHCP6.MsgType RELAY_REPL
public static DHCP6.MsgType[] values()
for (DHCP6.MsgType c : DHCP6.MsgType.values()) System.out.println(c);
public static DHCP6.MsgType 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 nullpublic byte value()