Interface MetakitService

All Superinterfaces:
loci.common.services.Service
All Known Implementing Classes:
MetakitServiceImpl

public interface MetakitService extends loci.common.services.Service
Interface defining methods for interacting with the OME Metakit library.
  • Method Details

    • initialize

      void initialize(String file) throws IOException
      Throws:
      IOException
    • initialize

      void initialize(loci.common.RandomAccessInputStream file) throws IOException
      Throws:
      IOException
    • getTableCount

      int getTableCount()
    • getTableNames

      String[] getTableNames()
    • getColumnNames

      String[] getColumnNames(String table)
    • getColumNames

      String[] getColumNames(int table)
    • getTableData

      Object[][] getTableData(String table)
    • getTableData

      Object[][] getTableData(int table)
    • getRowData

      Object[] getRowData(int row, String table)
    • getRowData

      Object[] getRowData(int row, int table)
    • getRowCount

      int getRowCount(int table)
    • getRowCount

      int getRowCount(String table)
    • getColumnTypes

      Class[] getColumnTypes(int table)
    • getColumnTypes

      Class[] getColumnTypes(String table)
    • close

      void close()