🛠️ Code cleanup & added many new features #1

Merged
gnmyt merged 121 commits from features/code-cleanup into master 2021-09-02 13:34:00 +00:00
Showing only changes of commit 5680c1968f - Show all commits

View File

@ -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
}