| Package | Description |
|---|---|
| com.blazebit.persistence.view |
Entity-View extension for the Blaze-Persistence API.
|
| com.blazebit.persistence.view.change |
Change model interfaces for querying changes of Updatable Entity-Views.
|
| Modifier and Type | Method and Description |
|---|---|
<T> SingularChangeModel<T> |
EntityViewManager.getChangeModel(T entityView)
Gives access to the change model of the entity view instance.
|
| Modifier and Type | Method and Description |
|---|---|
<X> SingularChangeModel<X> |
SingularChangeModel.get(SingularAttribute<E,X> attribute)
Returns the change model for the attribute.
|
| Modifier and Type | Method and Description |
|---|---|
<X> List<SingularChangeModel<X>> |
PluralChangeModel.get(SingularAttribute<V,X> attribute)
Returns the change models for the elements attribute.
|
List<SingularChangeModel<V>> |
PluralChangeModel.getAddedElements()
Returns the change models of all added elements.
|
List<SingularChangeModel<K>> |
MapChangeModel.getAddedKeys()
Returns the change models of all added keys.
|
List<SingularChangeModel<?>> |
MapChangeModel.getAddedObjects()
Returns the change models of all added keys and elements.
|
List<SingularChangeModel<V>> |
PluralChangeModel.getElementChanges()
Returns the change models of all added, removed or mutated elements.
|
List<SingularChangeModel<K>> |
MapChangeModel.getKeyChanges()
Returns the change models of all added, removed or mutated keys.
|
List<SingularChangeModel<V>> |
PluralChangeModel.getMutatedElements()
Returns the change models of all mutated elements.
|
List<SingularChangeModel<K>> |
MapChangeModel.getMutatedKeys()
Returns the change models of all mutated keys.
|
List<SingularChangeModel<?>> |
MapChangeModel.getMutatedObjects()
Returns the change models of all mutated keys and elements.
|
List<SingularChangeModel<?>> |
MapChangeModel.getObjectChanges()
Returns the change models of all added, removed or mutated keys and elements.
|
List<SingularChangeModel<V>> |
PluralChangeModel.getRemovedElements()
Returns the change models of all removed elements.
|
List<SingularChangeModel<K>> |
MapChangeModel.getRemovedKeys()
Returns the change models of all removed keys.
|
List<SingularChangeModel<?>> |
MapChangeModel.getRemovedObjects()
Returns the change models of all removed keys and elements.
|
<X> List<SingularChangeModel<X>> |
MapChangeModel.keyGet(SingularAttribute<K,X> attribute)
Returns the change models for the keys attribute.
|
Copyright © 2014–2018 Blazebit. All rights reserved.