package io.ebeaninternal.server.persist.dml;

Used to indicate the part of DML being processed.
/** * Used to indicate the part of DML being processed. */
public enum DmlMode {
The Insert SET.
/** * The Insert SET. */
INSERT,
The Update SET.
/** * The Update SET. */
UPDATE, }