Interface TableMap

  • All Known Implementing Classes:
    TableMapImpl

    public interface TableMap
    This models a collection of tables with identifiers.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      scala.Option<Table> getTable​(String id)
      Returns an optional containing the value associated to the given key, or an empty optional if there is no association.
      scala.collection.immutable.Seq<String> getTableIds()
      Returns the identifiers of the stored tables.
    • Method Detail

      • getTable

        scala.Option<Table> getTable​(String id)
        Returns an optional containing the value associated to the given key, or an empty optional if there is no association.

        Parameters:
        id - identifier
        Returns:
        an optional containing the value associated to the given key, or an empty optional if there is no association
      • getTableIds

        scala.collection.immutable.Seq<String> getTableIds()
        Returns the identifiers of the stored tables.

        Returns:
        the identifiers of the stored tables