public static enum GeoShapeStyle.WidthUnits extends Enum<GeoShapeStyle.WidthUnits>
GeoShape
width units.Enum Constant and Description |
---|
METERS
The width of
GeoShape is in meters, and changes in proportion with the map. |
POINTS
The width of
GeoShape is in points |
Modifier and Type | Method and Description |
---|---|
static GeoShapeStyle.WidthUnits |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoShapeStyle.WidthUnits[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoShapeStyle.WidthUnits POINTS
GeoShape
is in pointspublic static final GeoShapeStyle.WidthUnits METERS
GeoShape
is in meters, and changes in proportion with the map.public static GeoShapeStyle.WidthUnits[] values()
for (GeoShapeStyle.WidthUnits c : GeoShapeStyle.WidthUnits.values()) System.out.println(c);
public static GeoShapeStyle.WidthUnits 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