Added the query parameter enum
This commit is contained in:
parent
e8b29e1ff6
commit
5680c1968f
@ -0,0 +1,34 @@
|
||||
package de.gnmyt.sqltoolkit.querybuilder;
|
||||
|
||||
/**
|
||||
* All usable query parameters for the {@link QueryBuilder}
|
||||
*/
|
||||
public enum QueryParameter {
|
||||
|
||||
/**
|
||||
* The name of the table provided as a {@link String}
|
||||
*/
|
||||
TABLE_NAME,
|
||||
|
||||
/**
|
||||
* All 'where'-parameters of the query provided as a {@link java.util.HashMap}
|
||||
*/
|
||||
WHERE_LIST,
|
||||
|
||||
/**
|
||||
* All values of the query provided as a {@link java.util.HashMap}
|
||||
*/
|
||||
VALUE_LIST,
|
||||
|
||||
/**
|
||||
* All 'set'-parameters of the query provided as a {@link java.util.HashMap}
|
||||
*/
|
||||
SET_LIST,
|
||||
|
||||
/**
|
||||
* The row limit of a query provided as a {@link String}
|
||||
*/
|
||||
LIMIT
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user