public enum GangliaSlopeEnum extends Enum<GangliaSlopeEnum>
Enum Constant and Description |
---|
both
Interpolate on any value change.
|
negative
Interpolate on negative value change.
|
positive
Interpolate on positive value change.
|
unspecified
Used (by Ganglia) for things like
heartbeat and
location . |
zero
Plot the points as step functions (no interpolation).
|
Modifier and Type | Method and Description |
---|---|
int |
value() |
static GangliaSlopeEnum |
valueOf(int v) |
static GangliaSlopeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GangliaSlopeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GangliaSlopeEnum zero
public static final GangliaSlopeEnum positive
public static final GangliaSlopeEnum negative
public static final GangliaSlopeEnum both
public static final GangliaSlopeEnum unspecified
heartbeat
and
location
. (Location is reported with
units := (x,y,z)
.)public static GangliaSlopeEnum[] values()
for (GangliaSlopeEnum c : GangliaSlopeEnum.values()) System.out.println(c);
public static GangliaSlopeEnum 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 int value()
public static final GangliaSlopeEnum valueOf(int v)
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.