public static enum Dot11FrameType.Type extends Enum<Dot11FrameType.Type>
Enum Constant and Description |
---|
CONTROL
Control (01)
|
DATA
Data (10)
|
MANAGEMENT
Management (00)
|
RESERVED
Reserved (11)
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Dot11FrameType.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dot11FrameType.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dot11FrameType.Type MANAGEMENT
public static final Dot11FrameType.Type CONTROL
public static final Dot11FrameType.Type DATA
public static final Dot11FrameType.Type RESERVED
public static Dot11FrameType.Type[] values()
for (Dot11FrameType.Type c : Dot11FrameType.Type.values()) System.out.println(c);
public static Dot11FrameType.Type 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 getValue()
Copyright © 2011–2017 Pcap4J.org. All rights reserved.