Package org.pcap4j.packet
Class Dot11ChannelEntry
- java.lang.Object
-
- org.pcap4j.packet.Dot11ChannelEntry
-
- All Implemented Interfaces:
java.io.Serializable
public final class Dot11ChannelEntry extends java.lang.Object implements java.io.Serializable
IEEE802.11 Channel Entry field1 1 +---------------+---------------+ |Operating Class| Channel | +---------------+---------------+
- Since:
- pcap4j 1.7.0
- Author:
- Kaito Yamada
- See Also:
- IEEE802.11, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Dot11ChannelEntry(byte operatingClass, byte channel)
-
Method Summary
Modifier and Type Method Description boolean
equals(java.lang.Object obj)
byte
getChannel()
int
getChannelAsInt()
byte
getOperatingClass()
int
getOperatingClassAsInt()
int
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
getOperatingClass
public byte getOperatingClass()
- Returns:
- operatingClass
-
getOperatingClassAsInt
public int getOperatingClassAsInt()
- Returns:
- operatingClass
-
getChannel
public byte getChannel()
- Returns:
- channel
-
getChannelAsInt
public int getChannelAsInt()
- Returns:
- channel
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-