io.ebean.QueryType Maven / Gradle / Ivy
package io.ebean;
/**
* The type of the query being executed.
*/
public enum QueryType {
/**
* A find query.
*/
FIND,
/**
* An update query.
*/
UPDATE,
/**
* A delete query.
*/
DELETE
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy