public static enum Arp.OpCode extends Enum<Arp.OpCode> implements ProtocolEnum
| Enum Constant and Description |
|---|
DYN_REV_ERR
Dynamic reverse error operation code.
|
DYN_REV_REPLY
Dynamic reverse reply operation code.
|
DYN_REV_REQ
Dynamic reverse request operation code.
|
INV_REPLY
Inverse reply operation code.
|
INV_REQ
Inverse request operation code.
|
REPLY
Reply operation code.
|
REQ
Request operation code.
|
REV_REPLY
Reverse reply operation code.
|
REV_REQ
Reverse request operation code.
|
| Modifier and Type | Method and Description |
|---|---|
int |
code()
Returns the code value for the enumeration constant.
|
static Arp.OpCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Arp.OpCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Arp.OpCode REQ
public static final Arp.OpCode REPLY
public static final Arp.OpCode REV_REQ
public static final Arp.OpCode REV_REPLY
public static final Arp.OpCode DYN_REV_REQ
public static final Arp.OpCode DYN_REV_REPLY
public static final Arp.OpCode DYN_REV_ERR
public static final Arp.OpCode INV_REQ
public static final Arp.OpCode INV_REPLY
public static Arp.OpCode[] values()
for (Arp.OpCode c : Arp.OpCode.values()) System.out.println(c);
public static Arp.OpCode 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 nullpublic int code()
ProtocolEnumcode in interface ProtocolEnumCopyright © 2014. All Rights Reserved.