public enum RadarGridType extends java.lang.Enum<RadarGridType>
RadarPlot
.Enum Constant and Description |
---|
Radar
Identifies radar grid consisting as concentric circles.
|
Spiderweb
Identifies spider-web grid consisting as concentric regular polygons.
|
Modifier and Type | Method and Description |
---|---|
static RadarGridType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RadarGridType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RadarGridType Spiderweb
public static final RadarGridType Radar
public static RadarGridType[] values()
for (RadarGridType c : RadarGridType.values()) System.out.println(c);
public static RadarGridType 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