- java.lang.Object
-
- com.rezzedup.util.constants.Aggregates
-
public class Aggregates extends Object
Aggregates constants.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceAggregates.PendingA pending aggregation step.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Aggregates.Pending.ConstantTypefrom(Class<?> source)Aggregates constants from the provided source class.static Aggregates.Pending.ConstantTypefromThisClass()Initiates constant aggregation from "this" class (whichever class happens to be calling this method).
-
-
-
Method Detail
-
from
public static Aggregates.Pending.ConstantType from(Class<?> source)
Aggregates constants from the provided source class.- Parameters:
source- the source class- Returns:
- next step: pending constant type
-
fromThisClass
public static Aggregates.Pending.ConstantType fromThisClass()
Initiates constant aggregation from "this" class (whichever class happens to be calling this method). Constants are sourced from the class found directly beneath theAggregatesclass on the call stack.- Returns:
- next step: pending constant type
-
-