public enum ElementsNames extends Enum<ElementsNames>
RrdGraphDef.setColor(ElementsNames, java.awt.Paint)
method.Enum Constant and Description |
---|
arrow
The arrow color
|
back
The background color
|
canvas
The canvas color
|
font
The font color
|
frame
The frame color
|
grid
The minor grid color
|
mgrid
The major grid color
|
shadea
The top-left graph shade color
|
shadeb
The bottom-right graph shade color
|
xaxis
The x-axis color
|
yaxis
The 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 canvas
public static final ElementsNames back
public static final ElementsNames shadea
public static final ElementsNames shadeb
public static final ElementsNames grid
public static final ElementsNames mgrid
public static final ElementsNames font
public static final ElementsNames frame
public static final ElementsNames arrow
public static final ElementsNames xaxis
public static final ElementsNames yaxis
public static ElementsNames[] values()
for (ElementsNames c : ElementsNames.values()) System.out.println(c);
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 null