Uses of Interface
it.tidalwave.role.Aggregate
-
Packages that use Aggregate Package Description it.tidalwave.role it.tidalwave.role.ui -
-
Uses of Aggregate in it.tidalwave.role
Fields in it.tidalwave.role with type parameters of type Aggregate Modifier and Type Field Description static java.lang.Class<Aggregate>
Aggregate. _Aggregate_
Methods in it.tidalwave.role that return Aggregate Modifier and Type Method Description static <T> Aggregate<T>
Aggregate. newInstance()
Returns a new empty instance that will be populated by means ofwith(String, Object)
.static <T> Aggregate<T>
Aggregate. of(java.lang.String name, T value)
Returns a new instance with the specified (name, value) pair.static <T> Aggregate<T>
Aggregate. of(java.util.Map<java.lang.String,T> mapByName)
Returns a new instance with the specified (name, value) pairs.default Aggregate<T>
Aggregate. with(java.lang.String name, T value)
Returns a new instance with the specified (name, value) pair. -
Uses of Aggregate in it.tidalwave.role.ui
Classes in it.tidalwave.role.ui that implement Aggregate Modifier and Type Class Description class
PresentationModelAggregate
A specialisation ofAggregate
<PresentationModel>
which offers a convenience method for aggregating its contained objects.
-