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 TableNameReturns 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 TypeMethodDescriptionvoidBetterTeamsDatabase.deleteRecord(TableName table, String condition) Used to delete a record from the specified tableUsed to a specific column value from thebooleanUsed to check if an SQL query has a resultvoidBetterTeamsDatabase.insertRecord(TableName table, String columns, String values) Used to add a record into a tablevoidBetterTeamsDatabase.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) voidBetterTeamsDatabase.updateRecord(TableName table, String update) Used to modify all records in a databasevoidBetterTeamsDatabase.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 voidprotected voidDatabase.addColumn(TableName table, String newColumnName, String columnDefinition, String referenceColumn, boolean after) voidDatabase.createTableIfNotExists(TableName tableName, String tableInfo) Used to create a table if the table does not currently existbooleanChecks if a column exists in the specified table.Constructors in com.booksaw.betterTeams.database.api with parameters of type TableName