org.opennms.jicmp.ipv6
Enum ICMPv6Packet.Type

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

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


Enum Constant Summary
DestinationUnreachable
           
EchoReply
           
EchoRequest
           
Other
           
TimeExceeded
           
 
Method Summary
 int getCode()
           
static ICMPv6Packet.Type toType(byte typeCode)
           
static ICMPv6Packet.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ICMPv6Packet.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

DestinationUnreachable

public static final ICMPv6Packet.Type DestinationUnreachable

TimeExceeded

public static final ICMPv6Packet.Type TimeExceeded

EchoRequest

public static final ICMPv6Packet.Type EchoRequest

EchoReply

public static final ICMPv6Packet.Type EchoReply

Other

public static final ICMPv6Packet.Type Other
Method Detail

values

public static ICMPv6Packet.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 (ICMPv6Packet.Type c : ICMPv6Packet.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 ICMPv6Packet.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 ICMPv6Packet.Type toType(byte typeCode)


Copyright © 2011. All Rights Reserved.