Uses of Enum Class
com.booksaw.betterTeams.database.TableName
Packages that use TableName
-
Uses of TableName in com.booksaw.betterTeams.database
Methods in com.booksaw.betterTeams.database that return TableNameModifier and TypeMethodDescriptionstatic TableName
Returns the enum constant of this class with the specified name.static TableName[]
TableName.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.booksaw.betterTeams.database with parameters of type TableNameModifier and TypeMethodDescriptionvoid
BetterTeamsDatabase.deleteRecord
(TableName table, String condition) Used to delete a record from the specified tableUsed to a specific column value from theboolean
Used to check if an SQL query has a resultvoid
BetterTeamsDatabase.insertRecord
(TableName table, String columns, String values) Used to add a record into a tablevoid
BetterTeamsDatabase.insertRecordIfNotExists
(TableName table, String columns, String values) BetterTeamsDatabase.selectInnerJoinGroupByOrder
(String select, TableName table, TableName joinTable, String columToJoin, String groupBy, String orderBy) BetterTeamsDatabase.selectInnerJoinOrder
(String select, TableName table, TableName joinTable, String columToJoin, String orderBy) BetterTeamsDatabase.selectOrder
(String select, TableName from, String orderBy) BetterTeamsDatabase.selectWhere
(String select, TableName from, String where) BetterTeamsDatabase.selectWhereOrder
(String select, TableName from, String where, String orderBy) void
BetterTeamsDatabase.updateRecord
(TableName table, String update) Used to modify all records in a databasevoid
BetterTeamsDatabase.updateRecordWhere
(TableName table, String update, String condition) Used to modify a record in the database -
Uses of TableName in com.booksaw.betterTeams.database.api
Methods in com.booksaw.betterTeams.database.api that return TableNameMethods in com.booksaw.betterTeams.database.api with parameters of type TableNameModifier and TypeMethodDescriptionprotected void
protected void
Database.addColumn
(TableName table, String newColumnName, String columnDefinition, String referenceColumn, boolean after) void
Database.createTableIfNotExists
(TableName tableName, String tableInfo) Used to create a table if the table does not currently existboolean
Checks if a column exists in the specified table.Constructors in com.booksaw.betterTeams.database.api with parameters of type TableName