Uses of Class
noope.input.BlockReaderException

Packages that use BlockReaderException
noope.input Classes related to data input. 
 

Uses of BlockReaderException in noope.input
 

Subclasses of BlockReaderException in noope.input
 class BRFileIOException
          A BlockReader throws this exception when a file I/O error occurs.
 class StringBlockReaderException
          StringBlockReader throws this sort of exceptions.
 

Methods in noope.input that throw BlockReaderException
abstract  java.lang.String BlockReader.getHeader()
          Returns the header of this block.
abstract  java.lang.String BlockReader.getParameter()
          Returns the parameter of this block.
abstract  boolean BlockReader.hasMoreEntries()
          Returns TRUE if this block has more Entries after the one that was last returned
abstract  java.lang.String[] BlockReader.getNextEntry()
          Returns the next Entry, as a string array.
abstract  java.lang.String[] BlockReader.peekNextEntry()
          This method acts as getNextEntry() but does not advance position
abstract  void BlockReader.seekFirstEntry()
          Moves the "entry pointer" back to the first Entry, so that the next call to getNextEntry() will return the first one in the block
abstract  BlockReaderLocation BlockReader.getEntryLocation()
          Returns a BlockReaderLocation object describing the current Entry location.
abstract  boolean BlockReader.hasMoreBlocks()
          Returns TRUE if this block has more Blocks after the one that was last returned
abstract  BlockReader BlockReader.getNextBlock()
          Returns the next subblock, which is an instance of BlockReader.
abstract  BlockReader BlockReader.peekNextBlock()
          This method acts as getNextBlock() but does not advance position
abstract  void BlockReader.seekFirstBlock()
          Resets the subblock position to the beginning, so that the next call to getNextBlock() will return the first subblock (unless there are no subblocks, in which case an exception is thrown, of course.
abstract  BlockReaderLocation BlockReader.getBlockLocation()
          Similar to getEntryLocation
abstract  BlockReaderContext BlockReader.getContext(BlockReaderLocation loc)
          Converts a Location into a fully-qualified Context object.
 java.lang.String[] StringBlockReader.getNextEntry()
           
 java.lang.String[] StringBlockReader.peekNextEntry()
           
 void StringBlockReader.seekFirstEntry()
           
 BlockReader StringBlockReader.getNextBlock()
           
 BlockReader StringBlockReader.peekNextBlock()
           
 void StringBlockReader.seekFirstBlock()
           
 

Constructors in noope.input that throw BlockReaderException
StringBlockReader(java.lang.String s)
           
FileBlockReader(java.lang.String fileName)
           
FileBlockReader(java.io.BufferedReader reader)