Interface DatabaseStructure

    • Method Detail

      • getName

        @Deprecated
        default java.lang.String getName()
        Deprecated.
        Use getPhysicalName() instead.
        The name of the database structure (table or sequence).
      • getPhysicalName

        QualifiedName getPhysicalName()
        The physical name of the database structure (table or sequence).

        Only available after registerExportables(Database) has been called.

        Returns:
        The structure name.
      • getTimesAccessed

        int getTimesAccessed()
        How many times has this structure been accessed through this reference?
        Returns:
        The number of accesses.
      • getInitialValue

        int getInitialValue()
        The configured initial value
        Returns:
        The configured initial value
      • getIncrementSize

        int getIncrementSize()
        The configured increment size
        Returns:
        The configured increment size
      • buildCallback

        AccessCallback buildCallback​(SharedSessionContractImplementor session)
        A callback to be able to get the next value from the underlying structure as needed.
        Parameters:
        session - The session.
        Returns:
        The next value.
      • prepare

        @Deprecated
        default void prepare​(Optimizer optimizer)
        Deprecated.
        Prepare this structure for use. Called sometime after instantiation, but before first use.
        Parameters:
        optimizer - The optimizer being applied to the generator.
      • configure

        default void configure​(Optimizer optimizer)
        Configures this structure with the given arguments.

        Called just after instantiation, before initialize(SqlStringGenerationContext)

        Parameters:
        optimizer - The optimizer being applied to the generator.
      • initialize

        default void initialize​(SqlStringGenerationContext context)
        Initializes this structure, in particular pre-generates SQL as necessary.

        This method is called just once, after registerExportables(Database), before first use.

        Parameters:
        context - A context to help generate SQL strings
      • isPhysicalSequence

        boolean isPhysicalSequence()
        Is the structure physically a sequence?
        Returns:
        true if the actual database structure is a sequence; false otherwise.
      • getAllSqlForTests

        @Deprecated
        default java.lang.String[] getAllSqlForTests()
        Deprecated.
        Exposed for tests only.