public static enum SimpleGaugeBuilder.GaugeType extends java.lang.Enum<SimpleGaugeBuilder.GaugeType>
| Enum Constant and Description |
|---|
SIMPLE_LINEAR_GAUGE |
SIMPLE_RADIAL_GAUGE |
| Modifier and Type | Method and Description |
|---|---|
static SimpleGaugeBuilder.GaugeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleGaugeBuilder.GaugeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleGaugeBuilder.GaugeType SIMPLE_RADIAL_GAUGE
public static final SimpleGaugeBuilder.GaugeType SIMPLE_LINEAR_GAUGE
public static SimpleGaugeBuilder.GaugeType[] values()
for (SimpleGaugeBuilder.GaugeType c : SimpleGaugeBuilder.GaugeType.values()) System.out.println(c);
public static SimpleGaugeBuilder.GaugeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null