| Package | Description |
|---|---|
| com.avaje.ebean |
Core API (see EbeanServer and Ebean).
|
| Modifier and Type | Method and Description |
|---|---|
UpdateQuery<T> |
UpdateQuery.set(String property,
Object value)
Set the value of a property.
|
UpdateQuery<T> |
UpdateQuery.setNull(String property)
Set the property to be null.
|
UpdateQuery<T> |
UpdateQuery.setRaw(String propertyExpression)
Set using a property expression that does not need any bind values.
|
UpdateQuery<T> |
UpdateQuery.setRaw(String propertyExpression,
Object... values)
Set using a property expression that can contain
? bind value placeholders. |
static <T> UpdateQuery<T> |
Ebean.update(Class<T> beanType)
Create an Update query to perform a bulk update.
|
<T> UpdateQuery<T> |
EbeanServer.update(Class<T> beanType)
Create an Update query to perform a bulk update.
|
Copyright © 2016. All rights reserved.