|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<SnoopRecordType>
org.jnetstream.capture.file.snoop.SnoopRecordType
public enum SnoopRecordType
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.
| 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 |
|---|
public static final SnoopRecordType PacketRecord
public static final SnoopRecordType BlockRecord
| Method Detail |
|---|
public static final SnoopRecordType[] values()
for(SnoopRecordType c : SnoopRecordType.values())
System.out.println(c);
public static SnoopRecordType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||