org.jnetstream.capture.file.snoop
Enum SnoopRecordType

java.lang.Object
  extended by java.lang.Enum<SnoopRecordType>
      extended by org.jnetstream.capture.file.snoop.SnoopRecordType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SnoopRecordType>, RecordFilterTarget, FilterTarget

public enum SnoopRecordType
extends java.lang.Enum<SnoopRecordType>
implements RecordFilterTarget

Types of record found in Snoop file format. The record types also server as filter targets, meaning they can be used in construction of filters that work on records.

Author:
Mark Bednarczyk, Sly Technologies, Inc.

Enum Constant Summary
BlockRecord
          Block record type also known as file header
PacketRecord
          Packet record type
 
Method Summary
static SnoopRecordType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SnoopRecordType[] 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

PacketRecord

public static final SnoopRecordType PacketRecord
Packet record type


BlockRecord

public static final SnoopRecordType BlockRecord
Block record type also known as file header

Method Detail

values

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

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

valueOf

public static SnoopRecordType 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