001package io.ebean;
002
003/**
004 * The type of the query being executed.
005 */
006public enum QueryType {
007
008  /**
009   * A find query.
010   */
011  FIND,
012
013  /**
014   * An update query.
015   */
016  UPDATE,
017
018  /**
019   * A delete query.
020   */
021  DELETE
022}