All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.QueryType Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
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