Class MySQLSchemaQueries.ForeignKeyConstraint

java.lang.Object
com.djrapitops.plan.storage.database.queries.schema.MySQLSchemaQueries.ForeignKeyConstraint
Enclosing class:
MySQLSchemaQueries

public static class MySQLSchemaQueries.ForeignKeyConstraint extends Object
Represents a FOREIGN KEY constraint in a MySQL database.
  • Constructor Details

    • ForeignKeyConstraint

      public ForeignKeyConstraint(String table, String referencedTable, String column, String referencedColumn, String constraintName)
  • Method Details

    • getTable

      public String getTable()
    • getReferencedTable

      public String getReferencedTable()
    • getColumn

      public String getColumn()
    • getReferencedColumn

      public String getReferencedColumn()
    • getConstraintName

      public String getConstraintName()
    • toString

      public String toString()
      Overrides:
      toString in class Object