org.jnetpcap.packet.analysis
Enum FragmentSequenceEvent.Type

java.lang.Object
  extended by java.lang.Enum<FragmentSequenceEvent.Type>
      extended by org.jnetpcap.packet.analysis.FragmentSequenceEvent.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FragmentSequenceEvent.Type>, AnalyzerEvent.AnalyzerEventType
Enclosing class:
FragmentSequenceEvent

public static enum FragmentSequenceEvent.Type
extends java.lang.Enum<FragmentSequenceEvent.Type>
implements AnalyzerEvent.AnalyzerEventType


Enum Constant Summary
SEQUENCE_COMPLETE
           
SEQUENCE_FRAGMENT_OVERLAP
           
SEQUENCE_NEW_PACKET
           
SEQUENCE_START
           
SEQUENCE_TIMEOUT
           
 
Method Summary
static FragmentSequenceEvent.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FragmentSequenceEvent.Type[] 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
 

Enum Constant Detail

SEQUENCE_COMPLETE

public static final FragmentSequenceEvent.Type SEQUENCE_COMPLETE

SEQUENCE_FRAGMENT_OVERLAP

public static final FragmentSequenceEvent.Type SEQUENCE_FRAGMENT_OVERLAP

SEQUENCE_NEW_PACKET

public static final FragmentSequenceEvent.Type SEQUENCE_NEW_PACKET

SEQUENCE_START

public static final FragmentSequenceEvent.Type SEQUENCE_START

SEQUENCE_TIMEOUT

public static final FragmentSequenceEvent.Type SEQUENCE_TIMEOUT
Method Detail

values

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

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

valueOf

public static FragmentSequenceEvent.Type 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