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

com.avaje.ebeaninternal.server.persist.dml.DmlMode Maven / Gradle / Ivy

The newest version!
package com.avaje.ebeaninternal.server.persist.dml;

/**
 * Used to indicate the part of DML being processed.
 */
public enum DmlMode {

	/**
	 * The Insert SET.
	 */
	INSERT,
	
	/**
	 * The Update SET.
	 */
	UPDATE,
	
	/**
	 * The Update or Delete WHERE.
	 */
	WHERE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy