Uses of Interface
jnetpcap.capture.file.Record

Packages that use Record
jnetpcap.capture.file Allows full access to capture file structure. 
jnetpcap.capture.file.nap Network cAPture file format. 
jnetpcap.capture.file.pcap PCAP file format as defined by Libpcap library. 
jnetpcap.capture.file.snoop Sun's SNOOP capture file format (RFC 1761) 
 

Uses of Record in jnetpcap.capture.file
 

Classes in jnetpcap.capture.file with type parameters of type Record
 interface MutableRecordIterator<T extends Record>
          Iterator which extends the basic immutable RecordIterator and add methods to add, remove, move or seek records in a capture file.
 interface RecordIterator<T extends Record>
          An iterator that allows iteration over records contained in a capture file.
 

Subinterfaces of Record in jnetpcap.capture.file
 interface BlockRecord
          A block record also sometimes refered to a file header in a capture file which uniquely identifies the file as certain type with a magic pattern or magic number.
 interface DataRecord
          Data record is a record in a capture file that belongs to one block record, a parent/child relationship, and contains some kind of data.
 interface MutableBlockRecord
          Extends the immutable BlockRecord interface and adds methods for adding, removing, moving and seeking file records.
 

Uses of Record in jnetpcap.capture.file.nap
 

Subinterfaces of Record in jnetpcap.capture.file.nap
 interface NAPBlock
           
 interface NAPExpert
           
 interface NAPMetaRecord
           
 interface NAPPacket
           
 interface NAPRecord
           
 

Methods in jnetpcap.capture.file.nap that return Record
abstract  Record NAPModel.readRecord(Record parent)
           
 

Methods in jnetpcap.capture.file.nap that return types with arguments of type Record
abstract  java.util.List<Record> NAPModel.getAllRecords()
           
 

Methods in jnetpcap.capture.file.nap with parameters of type Record
abstract  Record NAPModel.readRecord(Record parent)
           
 

Uses of Record in jnetpcap.capture.file.pcap
 

Subinterfaces of Record in jnetpcap.capture.file.pcap
 interface PcapBlockRecord
           
 interface PcapPacketRecord
           
 

Uses of Record in jnetpcap.capture.file.snoop
 

Subinterfaces of Record in jnetpcap.capture.file.snoop
 interface SnoopBlockRecord
           
 interface SnoopPacketRecord