sidnet.stack.std.mac.ieee802_15_4
Enum Packet_t
java.lang.Object
java.lang.Enum<Packet_t>
sidnet.stack.std.mac.ieee802_15_4.Packet_t
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Packet_t>
public enum Packet_t
- extends java.lang.Enum<Packet_t>
Method Summary |
static Packet_t |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Packet_t[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
PT_TCP
public static final Packet_t PT_TCP
PT_UDP
public static final Packet_t PT_UDP
PT_CBR
public static final Packet_t PT_CBR
PT_AUDIO
public static final Packet_t PT_AUDIO
PT_VIDEO
public static final Packet_t PT_VIDEO
PT_ACK
public static final Packet_t PT_ACK
PT_START
public static final Packet_t PT_START
PT_STOP
public static final Packet_t PT_STOP
PT_PRUNE
public static final Packet_t PT_PRUNE
PT_GRAFT
public static final Packet_t PT_GRAFT
PT_GRAFTACK
public static final Packet_t PT_GRAFTACK
PT_JOIN
public static final Packet_t PT_JOIN
PT_ASSERT
public static final Packet_t PT_ASSERT
PT_MESSAGE
public static final Packet_t PT_MESSAGE
PT_RTCP
public static final Packet_t PT_RTCP
PT_RTP
public static final Packet_t PT_RTP
PT_RTPROTO_DV
public static final Packet_t PT_RTPROTO_DV
PT_CtrMcast_Encap
public static final Packet_t PT_CtrMcast_Encap
PT_CtrMcast_Decap
public static final Packet_t PT_CtrMcast_Decap
PT_SRM
public static final Packet_t PT_SRM
PT_REQUEST
public static final Packet_t PT_REQUEST
PT_ACCEPT
public static final Packet_t PT_ACCEPT
PT_CONFIRM
public static final Packet_t PT_CONFIRM
PT_TEARDOWN
public static final Packet_t PT_TEARDOWN
PT_LIVE
public static final Packet_t PT_LIVE
PT_REJECT
public static final Packet_t PT_REJECT
PT_TELNET
public static final Packet_t PT_TELNET
PT_FTP
public static final Packet_t PT_FTP
PT_PARETO
public static final Packet_t PT_PARETO
PT_EXP
public static final Packet_t PT_EXP
PT_INVAL
public static final Packet_t PT_INVAL
PT_HTTP
public static final Packet_t PT_HTTP
PT_ENCAPSULATED
public static final Packet_t PT_ENCAPSULATED
PT_MFTP
public static final Packet_t PT_MFTP
PT_ARP
public static final Packet_t PT_ARP
PT_MAC
public static final Packet_t PT_MAC
PT_TORA
public static final Packet_t PT_TORA
PT_DSR
public static final Packet_t PT_DSR
PT_AODV
public static final Packet_t PT_AODV
PT_IMEP
public static final Packet_t PT_IMEP
PT_RAP_DATA
public static final Packet_t PT_RAP_DATA
PT_RAP_ACK
public static final Packet_t PT_RAP_ACK
PT_TFRC
public static final Packet_t PT_TFRC
PT_TFRC_ACK
public static final Packet_t PT_TFRC_ACK
PT_PING
public static final Packet_t PT_PING
PT_PBC
public static final Packet_t PT_PBC
PT_DIFF
public static final Packet_t PT_DIFF
PT_RTPROTO_LS
public static final Packet_t PT_RTPROTO_LS
PT_LDP
public static final Packet_t PT_LDP
PT_GAF
public static final Packet_t PT_GAF
PT_REALAUDIO
public static final Packet_t PT_REALAUDIO
PT_PUSHBACK
public static final Packet_t PT_PUSHBACK
PT_LMS
public static final Packet_t PT_LMS
PT_LMS_SETUP
public static final Packet_t PT_LMS_SETUP
PT_SCTP
public static final Packet_t PT_SCTP
PT_SCTP_APP1
public static final Packet_t PT_SCTP_APP1
PT_SMAC
public static final Packet_t PT_SMAC
PT_XCP
public static final Packet_t PT_XCP
PT_HDLC
public static final Packet_t PT_HDLC
PT_BLTRACE
public static final Packet_t PT_BLTRACE
PT_NTYPE
public static final Packet_t PT_NTYPE
values
public static final Packet_t[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(Packet_t c : Packet_t.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Packet_t valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name