Interface ABIFParser.DataAccess

  • All Superinterfaces:
    java.io.DataInput, Seekable
    Enclosing class:
    ABIFParser

    public static interface ABIFParser.DataAccess
    extends Seekable, java.io.DataInput
    Concatenation of the Seekable and DataInput interfaces.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void finishedReading()
      Called when the parser has finished reading.
      • Methods inherited from interface java.io.DataInput

        readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, skipBytes
      • Methods inherited from interface org.biojava.utils.io.Seekable

        seek
    • Method Detail

      • finishedReading

        void finishedReading()
                      throws java.io.IOException
        Called when the parser has finished reading. The access may choose to close itself at this point, e.g. if it is using a RandomAccessFile.
        Throws:
        java.io.IOException - if it could not do what it needs to.