public enum ElementsNames extends Enum<ElementsNames>
RrdGraphDef.setColor(ElementsNames, java.awt.Paint)
method.| Enum Constant and Description |
|---|
arrowThe arrow color |
backThe background color |
canvasThe canvas color |
fontThe font color |
frameThe frame color |
gridThe minor grid color |
mgridThe major grid color |
shadeaThe top-left graph shade color |
shadebThe bottom-right graph shade color |
xaxisThe x-axis color |
yaxisThe y-axis color |
| Modifier and Type | Method and Description |
|---|---|
static ElementsNames | valueOf(String name)Returns the enum constant of this type with the specified name. |
static ElementsNames[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. |
public static final ElementsNames arrow
public static final ElementsNames back
public static final ElementsNames canvas
public static final ElementsNames font
public static final ElementsNames frame
public static final ElementsNames grid
public static final ElementsNames mgrid
public static final ElementsNames shadea
public static final ElementsNames shadeb
public static final ElementsNames xaxis
public static final ElementsNames yaxis
public static ElementsNames 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 ElementsNames[] values()
for (ElementsNames c : ElementsNames.values()) System.out.println(c);