public enum Meta extends Enum<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<Meta> |
getOffPointSet() |
static EnumSet<Meta> |
getOnPointSet() |
boolean |
isOnPoint() |
int |
size() |
static Meta |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Meta[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Meta RANGE
public static final Meta RMS
public static final Meta ALARM
public static final Meta WARNING
public static Meta[] values()
for (Meta c : Meta.values()) System.out.println(c);
public static 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 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 © 2023 LSST. All rights reserved.