|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SuppliedFileTypes>
jnetpcap.capture.file.SuppliedFileTypes
public enum SuppliedFileTypes
Defines enum constants for all the currently supported capture file types by the jNetPCAP capture framework.
| Enum Constant Summary | |
|---|---|
Nap
jNetPCAP defined Network cAPture file format with many advanced features not available in the other file formats. |
|
Pcap
Libpcap file format for capture/trace files. |
|
Snoop
Sun Microsystems capture file format (RFC 1761) |
|
| Method Summary | |
|---|---|
java.lang.String |
getBootstrap()
A helper method that is used to bootstrap the file format, preload certain classes and resources. |
java.lang.String |
getDescription()
Returns a short description of the file format. |
boolean |
isIndexable()
Flag which defines if the native file format is indexable, that is you can use packet indexes to index packets out of the capture file using random access IO. |
static SuppliedFileTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SuppliedFileTypes[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final SuppliedFileTypes Nap
public static final SuppliedFileTypes Pcap
public static final SuppliedFileTypes Snoop
| Method Detail |
|---|
public static final SuppliedFileTypes[] values()
for(SuppliedFileTypes c : SuppliedFileTypes.values())
System.out.println(c);
public static SuppliedFileTypes 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 namepublic java.lang.String getDescription()
getDescription in interface FileTypepublic boolean isIndexable()
isIndexable in interface FileTypepublic final java.lang.String getBootstrap()
getBootstrap in interface FileType
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||