public enum SQLQuery extends Enum<SQLQuery>
| Modifier and Type | Method and Description | 
|---|---|
String | 
toString()  | 
static SQLQuery | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static SQLQuery[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SQLQuery CREATE_TABLE_PUNISHMENT
public static final SQLQuery CREATE_TABLE_PUNISHMENT_HISTORY
public static final SQLQuery INSERT_PUNISHMENT
public static final SQLQuery INSERT_PUNISHMENT_HISTORY
public static final SQLQuery SELECT_EXACT_PUNISHMENT
public static final SQLQuery DELETE_PUNISHMENT
public static final SQLQuery DELETE_OLD_PUNISHMENTS
public static final SQLQuery SELECT_USER_PUNISHMENTS
public static final SQLQuery SELECT_USER_PUNISHMENTS_HISTORY
public static final SQLQuery SELECT_USER_PUNISHMENTS_WITH_IP
public static final SQLQuery SELECT_USER_PUNISHMENTS_HISTORY_WITH_IP
public static final SQLQuery SELECT_USER_PUNISHMENTS_HISTORY_BY_CALCULATION
public static final SQLQuery UPDATE_PUNISHMENT_REASON
public static final SQLQuery SELECT_PUNISHMENT_BY_ID
public static final SQLQuery SELECT_ALL_PUNISHMENTS
public static final SQLQuery SELECT_ALL_PUNISHMENTS_HISTORY
public static final SQLQuery SELECT_ALL_PUNISHMENTS_LIMIT
public static final SQLQuery SELECT_ALL_PUNISHMENTS_HISTORY_LIMIT
public static SQLQuery[] values()
for (SQLQuery c : SQLQuery.values()) System.out.println(c);
public static SQLQuery valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.