Uses of Class
org.basex.build.fs.parser.BufferedFileChannel

Packages that use BufferedFileChannel
org.basex.build.fs Contains classes for file system traversals. 
org.basex.build.fs.parser Contains classes for extracting file metadata and content. 
 

Uses of BufferedFileChannel in org.basex.build.fs
 

Methods in org.basex.build.fs with parameters of type BufferedFileChannel
 boolean NewFSParser.isParseable(BufferedFileChannel f, java.lang.String suffix)
          Checks if a parser for the given suffix is available and the file is in the correct format.
 void NewFSParser.parseFileFragment(BufferedFileChannel bfc, java.lang.String title, java.lang.String suffix)
           Parses a fragment of a file, e.g. a picture inside an ID3 frame.
 void NewFSParser.parseWithFallbackParser(BufferedFileChannel bfc, boolean content)
           Parses the file with the fallback parser.
 

Uses of BufferedFileChannel in org.basex.build.fs.parser
 

Methods in org.basex.build.fs.parser that return BufferedFileChannel
 BufferedFileChannel BufferedFileChannel.subChannel(int bytesToRead)
           Creates a "subChannel" view for this BufferedFileChannel instance that shares the underlying FileChannel and buffer.
 

Methods in org.basex.build.fs.parser with parameters of type BufferedFileChannel
 boolean XMLParser.check(BufferedFileChannel f)
           
 boolean TXTParser.check(BufferedFileChannel bfc)
           Checks if there is a File in correct format and can be read by the parser.
 boolean PNGParser.check(BufferedFileChannel bfc)
           
 boolean MP3Parser.check(BufferedFileChannel bufFC)
           
 boolean KMLParser.check(BufferedFileChannel f)
           
 boolean JPGParser.check(BufferedFileChannel f)
           
abstract  boolean AbstractParser.check(BufferedFileChannel bfc)
           Checks if there is a File in correct format and can be read by the parser.
 void XMLParser.meta(BufferedFileChannel bfc, NewFSParser parser)
           
 void PNGParser.meta(BufferedFileChannel bfc, NewFSParser parser)
           
 void MP3Parser.meta(BufferedFileChannel f, NewFSParser parser)
           
 void KMLParser.meta(BufferedFileChannel bfc, NewFSParser parser)
           
 void JPGParser.meta(BufferedFileChannel f, NewFSParser parser)
           
 void XMLParser.readContent(BufferedFileChannel f, NewFSParser parser)
           
 void TXTParser.readContent(BufferedFileChannel bfc, NewFSParser parser)
           Reads the textual content from a FileChannel and fires events.
 void PNGParser.readContent(BufferedFileChannel bfc, NewFSParser parser)
           
 void MP3Parser.readContent(BufferedFileChannel f, NewFSParser parser)
           
 void KMLParser.readContent(BufferedFileChannel f, NewFSParser parser)
           
 void JPGParser.readContent(BufferedFileChannel f, NewFSParser parser)
           
abstract  void AbstractParser.readContent(BufferedFileChannel bfc, NewFSParser parser)
           Reads the textual content from a FileChannel and fires events.
 void AbstractParser.readMeta(BufferedFileChannel bfc, NewFSParser parser)
           Reads the metadata from a BufferedFileChannel and fires events for each key/value pair.
 void AbstractParser.readMetaAndContent(BufferedFileChannel bfc, NewFSParser parser)
           Reads metadata and content from a BufferedFileChannel and fires events for each key-value pair.