public static enum TimeSeriesOperations.MergeRule extends Enum<TimeSeriesOperations.MergeRule>
| Enum Constant and Description |
|---|
INTERSECTION
The merge operation includes time points and values only at the
matching time points and applies the CombineMethod to the values at
the matching time points.
|
UNION
The merge operation includes all time points and values from each
time series and applies the CombineMethod to the values at the
matching time points.
|
UNION_MISSING
The merge operation includes all time points but applies the
CombineMethod only to values at matching time points, indicating a
missing value
Double.NaN for time points that are not in
the intersection. |
| Modifier and Type | Method and Description |
|---|---|
static TimeSeriesOperations.MergeRule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeSeriesOperations.MergeRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeSeriesOperations.MergeRule UNION
public static final TimeSeriesOperations.MergeRule INTERSECTION
public static final TimeSeriesOperations.MergeRule UNION_MISSING
Double.NaN for time points that are not in
the intersection.public static TimeSeriesOperations.MergeRule[] values()
for (TimeSeriesOperations.MergeRule c : TimeSeriesOperations.MergeRule.values()) System.out.println(c);
public static TimeSeriesOperations.MergeRule 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 © 2020 Rogue Wave Software. All rights reserved.