package io.ebean;

The type of the query being executed.
/** * The type of the query being executed. */
public enum QueryType {
A find query.
/** * A find query. */
FIND,
An update query.
/** * An update query. */
UPDATE,
A delete query.
/** * A delete query. */
DELETE }