org.opennms.jicmp.ip
Enum ICMPPacket.Type
java.lang.Object
java.lang.Enum<ICMPPacket.Type>
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>
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
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.