Interface DataCollectionId


public interface DataCollectionId
Common contract for all identifiers of data collections (RDBMS tables, MongoDB collections etc.)
Author:
Gunnar Morling
  • Method Summary

    Modifier and Type
    Method
    Description
    Get a database list including database, table name.
    Get the fully qualified identifier of the data collection.
    Get all elements of the data collection.
    Get a schema list including schema, table name.
  • Method Details

    • identifier

      String identifier()
      Get the fully qualified identifier of the data collection.
      Returns:
      the collection's fully qualified identifier.
    • parts

      List<String> parts()
      Get all elements of the data collection.
    • databaseParts

      List<String> databaseParts()
      Get a database list including database, table name.
    • schemaParts

      List<String> schemaParts()
      Get a schema list including schema, table name.