- Enclosing interface:
- EntityConnection
public static interface EntityConnection.Update
A class encapsulating a where clause along with columns and their associated values for update.
A factory for
EntityConnection.Update.Builder
instances via
all(EntityType)
, where(Condition)
.-
Nested Class Summary
-
Method Summary
-
Method Details
-
where
Condition where()- Returns:
- the WHERE condition
-
values
- Returns:
- an unmodifiable view of the new values mapped to their respective columns
-
all
- Parameters:
entityType
- the entity type- Returns:
- a
EntityConnection.Update.Builder
instance
-
where
- Parameters:
condition
- the WHERE condition- Returns:
- a
EntityConnection.Update.Builder
instance
-