public static enum TimelyConfiguration.AggregatorArchitecture extends java.lang.Enum<TimelyConfiguration.AggregatorArchitecture>
Enum Constant and Description |
---|
PARALLEL
Aggregands are copied over from lower timestamps to higher timestamps.
|
SEQUENTIAL
Aggregands are only present at the timestamp where they are inserted at.
|
Modifier and Type | Method and Description |
---|---|
static TimelyConfiguration.AggregatorArchitecture |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimelyConfiguration.AggregatorArchitecture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimelyConfiguration.AggregatorArchitecture PARALLEL
public static final TimelyConfiguration.AggregatorArchitecture SEQUENTIAL
public static TimelyConfiguration.AggregatorArchitecture[] values()
for (TimelyConfiguration.AggregatorArchitecture c : TimelyConfiguration.AggregatorArchitecture.values()) System.out.println(c);
public static TimelyConfiguration.AggregatorArchitecture valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null