Interface NetworkMatrixReader

All Known Implementing Classes:
DLMatrixReader, ExcelMatrixReader

public interface NetworkMatrixReader
Interface for reading a network matrix. All the specific network matrix readers implement this interface.
Author:
Nick Collier
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Closes the reader.
    Returns a list of the read AdjacencyMatrices.
  • Method Details

    • getMatrices

      List<AdjacencyMatrix> getMatrices() throws IOException
      Returns a list of the read AdjacencyMatrices.
      Returns:
      a list of the read AdjacencyMatrices.
      Throws:
      IOException - if there is an error while attempting to read the matrices
    • close

      void close()
      Closes the reader.