public enum TimeSeriesMode extends Enum<TimeSeriesMode>
| Enum Constant and Description | 
|---|
NONE
Not applicable. 
 | 
PINNED
At each time point, lower order distributions are only updated until a higher order distribution can be used. 
 | 
ROLLING
All temporal distribution are updated at every time point. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static TimeSeriesMode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static TimeSeriesMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TimeSeriesMode NONE
public static final TimeSeriesMode ROLLING
public static final TimeSeriesMode PINNED
public static TimeSeriesMode[] values()
for (TimeSeriesMode c : TimeSeriesMode.values()) System.out.println(c);
public static TimeSeriesMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.