org.dbtools.schema.OnConflict Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbtools-gen Show documentation
Show all versions of dbtools-gen Show documentation
DBTools ORM Class Generator.
package org.dbtools.schema;
/**
* Created by hansenji on 6/3/14.
*/
public enum OnConflict {
ROLLBACK,
ABORT,
FAIL,
IGNORE,
REPLACE,
NONE
}