org.jnetpcap.protocol.network
Enum Ip4.Ip4Type

java.lang.Object
  extended by java.lang.Enum<Ip4.Ip4Type>
      extended by org.jnetpcap.protocol.network.Ip4.Ip4Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Ip4.Ip4Type>, JHeaderType
Enclosing class:
Ip4

public static enum Ip4.Ip4Type
extends java.lang.Enum<Ip4.Ip4Type>
implements JHeaderType

A table of IpTypes and their names

Author:
Mark Bednarczyk, Sly Technologies, Inc.

Enum Constant Summary
ICMP
          Internet control messaging protocol
TCP
          Ttransmission control protocol
UDP
          Unreliable datagram protocol
 
Method Summary
 java.lang.String getDescription()
          Description of the type value
 int[] getTypeValues()
          Converts contant to numerical ip type
static java.lang.String toString(int type)
          Name of the constant
static Ip4.Ip4Type valueOf(int type)
          Converts a numerical type to constant
static Ip4.Ip4Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Ip4.Ip4Type[] 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
 
Methods inherited from interface org.jnetpcap.packet.JHeaderType
ordinal
 

Enum Constant Detail

ICMP

public static final Ip4.Ip4Type ICMP
Internet control messaging protocol


TCP

public static final Ip4.Ip4Type TCP
Ttransmission control protocol


UDP

public static final Ip4.Ip4Type UDP
Unreliable datagram protocol

Method Detail

values

public static final Ip4.Ip4Type[] 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(Ip4.Ip4Type c : Ip4.Ip4Type.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static Ip4.Ip4Type 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

toString

public static java.lang.String toString(int type)
Name of the constant

Parameters:
type - ip type number
Returns:
constants name

valueOf

public static Ip4.Ip4Type valueOf(int type)
Converts a numerical type to constant

Parameters:
type - Ip4 type number
Returns:
constant or null if not found

getDescription

public final java.lang.String getDescription()
Description of the type value

Returns:
description string

getTypeValues

public final int[] getTypeValues()
Converts contant to numerical ip type

Specified by:
getTypeValues in interface JHeaderType
Returns:
Ip4 type number