Interface DropSchemaVisitor

  • All Known Implementing Classes:
    DropSchemaRenderer

    public interface DropSchemaVisitor
    Visitor for DROP SCHEMA statements.
    • Method Detail

      • visit

        void visit​(DropSchema dropSchema)
        Visit a DROP SCHEMA statement.
        Parameters:
        dropSchema - DROP SCHEMA statement to visit
      • visit

        void visit​(Schema schema)
        Visit the name of the schema to drop.
        Parameters:
        schema - name of the schema to visit
      • visit

        void visit​(Cascade cascade)
        Visit the CASCADE option.
        Parameters:
        cascade - CASCADE option to visit
      • visit

        void visit​(Restrict restrict)
        Visit the RESTRICT option.
        Parameters:
        restrict - RESTRICT option to visit