org.opennms.jicmp.ip
Enum ICMPPacket.Type

java.lang.Object
  extended by java.lang.Enum<ICMPPacket.Type>
      extended by org.opennms.jicmp.ip.ICMPPacket.Type
All Implemented Interfaces:
Serializable, Comparable<ICMPPacket.Type>
Enclosing class:
ICMPPacket

public static enum ICMPPacket.Type
extends Enum<ICMPPacket.Type>


Enum Constant Summary
DestUnreachable
           
EchoReply
           
EchoRequest
           
Other
           
Redirect
           
SourceQuench
           
TimeExceeded
           
Traceroute
           
 
Method Summary
 int getCode()
           
static ICMPPacket.Type toType(int code)
           
static ICMPPacket.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ICMPPacket.Type[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EchoReply

public static final ICMPPacket.Type EchoReply

DestUnreachable

public static final ICMPPacket.Type DestUnreachable

SourceQuench

public static final ICMPPacket.Type SourceQuench

Redirect

public static final ICMPPacket.Type Redirect

EchoRequest

public static final ICMPPacket.Type EchoRequest

TimeExceeded

public static final ICMPPacket.Type TimeExceeded

Traceroute

public static final ICMPPacket.Type Traceroute

Other

public static final ICMPPacket.Type Other
Method Detail

values

public static ICMPPacket.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ICMPPacket.Type c : ICMPPacket.Type.values())
    System.out.println(c);

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

valueOf

public static ICMPPacket.Type valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getCode

public int getCode()

toType

public static ICMPPacket.Type toType(int code)


Copyright © 2011. All Rights Reserved.