public static enum Trend.Meta extends Enum<Trend.Meta>
| Enum Constant and Description |
|---|
ALARM
Alarm triggering level.
|
RANGE
Min/max range of data represented by a single point on the plot.
|
RMS
RMS of data represented by a single point on the plot.
|
WARNING
Warning triggering level.
|
| Modifier and Type | Method and Description |
|---|---|
double[][] |
getBars(double[][] in)
Computes data for displaying error bars.
|
Color |
getColor() |
List<String> |
getKeys() |
static EnumSet<Trend.Meta> |
getOffPointSet() |
static EnumSet<Trend.Meta> |
getOnPointSet() |
boolean |
isOnPoint() |
int |
size() |
static Trend.Meta |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Trend.Meta[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trend.Meta RANGE
public static final Trend.Meta RMS
public static final Trend.Meta ALARM
public static final Trend.Meta WARNING
public static Trend.Meta[] values()
for (Trend.Meta c : Trend.Meta.values()) System.out.println(c);
public static Trend.Meta 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 nullpublic static EnumSet<Trend.Meta> getOnPointSet()
public static EnumSet<Trend.Meta> getOffPointSet()
public boolean isOnPoint()
public Color getColor()
public int size()
public double[][] getBars(double[][] in)
in - double[size()+1][n] array. The first index: 0 for value, then for all keys.Copyright © 2018 LSST. All rights reserved.