java.lang.Object
fr.multimc.api.commons.data.sources.database.models.Table
Direct Known Subclasses:
CustomTableSample, PlayersTable, TeamsTable

public class Table extends Object
  • Constructor Details

    • Table

      public Table(@NotNull @NotNull Database database, @NotNull @NotNull String name, @NotNull @NotNull List<Field> fields, @Nullable @Nullable List<IConstraint> constraints, boolean autoId)
      Constructor for SQL table
      Parameters:
      database - Database object
      name - Table name
      fields - Field objects that represent SQL columns
      constraints - Constraint objects that represent SQL constraints
      autoId - If true, add an auto-incremented primary key named "id"
  • Method Details

    • getDatabase

      public Database getDatabase()
    • getName

      public String getName()
    • getFields

      public List<Field> getFields()
    • getConstraints

      @Nullable public @Nullable List<IConstraint> getConstraints()