Module com.rezzedup.util.constants
Package com.rezzedup.util.constants
Interface Aggregates.Pending.ConstantType
-
- All Superinterfaces:
Aggregates.Pending
- Enclosing interface:
- Aggregates.Pending
public static interface Aggregates.Pending.ConstantType extends Aggregates.Pending
Step: provide the desired constant type to aggregate.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.rezzedup.util.constants.Aggregates.Pending
Aggregates.Pending.Aggregation<T>, Aggregates.Pending.ConstantType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description <T> Aggregates.Pending.Aggregation<T>constantsOfType(TypeCompatible<T> type)Sets the type of constant to aggregate.default <T> Aggregates.Pending.Aggregation<T>constantsOfType(Class<T> clazz)Sets the type of constant to aggregate.
-
-
-
Method Detail
-
constantsOfType
<T> Aggregates.Pending.Aggregation<T> constantsOfType(TypeCompatible<T> type)
Sets the type of constant to aggregate.- Type Parameters:
T- constant type- Parameters:
type- generic type token- Returns:
- next step: pending aggregation
-
constantsOfType
default <T> Aggregates.Pending.Aggregation<T> constantsOfType(Class<T> clazz)
Sets the type of constant to aggregate.- Type Parameters:
T- constant type- Parameters:
clazz- class of constant type- Returns:
- next step: pending aggregation
-
-