Uses of Class
io.ebean.event.changelog.ChangeType
-
Packages that use ChangeType Package Description io.ebean.event.changelog Provides a built in change log mechanism and can audit changes. -
-
Uses of ChangeType in io.ebean.event.changelog
Methods in io.ebean.event.changelog that return ChangeType Modifier and Type Method Description ChangeType
BeanChange. getEvent()
Return the change type (INSERT, UPDATE or DELETE).static ChangeType
ChangeType. valueOf(String name)
Returns the enum constant of this type with the specified name.static ChangeType[]
ChangeType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in io.ebean.event.changelog with parameters of type ChangeType Constructor Description BeanChange(String table, Object tenantId, Object id, ChangeType event, String data)
Construct with change as JSON.BeanChange(String type, Object tenantId, Object id, ChangeType event, String data, String oldData)
Construct with change as JSON.
-