public enum GaugeBarIndicatorCapMode extends Enum<GaugeBarIndicatorCapMode>
GaugeBarIndicator
.Enum Constant and Description |
---|
EDGE
The ends of the bars will be edged.
|
ROUND
The ends of the bars will be rounded.
|
Modifier and Type | Method and Description |
---|---|
static GaugeBarIndicatorCapMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GaugeBarIndicatorCapMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GaugeBarIndicatorCapMode ROUND
public static final GaugeBarIndicatorCapMode EDGE
public static GaugeBarIndicatorCapMode[] values()
for (GaugeBarIndicatorCapMode c : GaugeBarIndicatorCapMode.values()) System.out.println(c);
public static GaugeBarIndicatorCapMode 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