public enum ResamplingMode extends java.lang.Enum<ResamplingMode>
Enum Constant and Description |
---|
Auto
Auto-detect the most suitable resampling algorithm (Fastest, plus most accurate) for the type of data appended
|
Cluster2D
Groups close points in 2D space
|
Max
Assumes Evenly-spaced data (TimeSeries).
|
Mid
Assumes Evenly-spaced data (TimeSeries).
|
Min
Assumes Evenly-spaced data (TimeSeries).
|
MinMax
Assumes Evenly-spaced data (TimeSeries).
|
MinMaxWithUnevenSpacing
Does not assume Evenly-spaced data (TimeSeries).
|
None
Do not use resampling when redrawing a series
|
Modifier and Type | Method and Description |
---|---|
static ResamplingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResamplingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResamplingMode None
public static final ResamplingMode MinMax
public static final ResamplingMode Mid
public static final ResamplingMode Max
public static final ResamplingMode Min
public static final ResamplingMode Auto
public static final ResamplingMode Cluster2D
public static final ResamplingMode MinMaxWithUnevenSpacing
public static ResamplingMode[] values()
for (ResamplingMode c : ResamplingMode.values()) System.out.println(c);
public static ResamplingMode 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