Class Sequence

  • All Implemented Interfaces:
    DbObject

    public class Sequence
    extends AbstractDbObject
    Represents a database sequence.
    Author:
    Matt Ward
    • Constructor Detail

      • Sequence

        public Sequence​(java.lang.String name)
      • Sequence

        public Sequence​(DbObject parent,
                        java.lang.String name)
    • Method Detail

      • accept

        public void accept​(DbObjectVisitor visitor)
        Description copied from interface: DbObject
        Allows a visitor to be invoked against this DbObject. Implementations should ensure that child objects are visited first (by calling accept on them) before invoking the visitor on itself.
        Parameters:
        visitor - DbObjectVisitor