|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GeographicalArea>
com.googlecode.charts4j.GeographicalArea
public enum GeographicalArea
The geographical area enumeration that must be supplied for
GCharts.newMapChart(GeographicalArea)
.
PoliticalBoundary
,
USAState
,
Country
,
MapChart
,
GCharts
Enum Constant Summary | |
---|---|
AFRICA
Africa. |
|
ASIA
Asia. |
|
EUROPE
Europe. |
|
MIDDLE_EAST
Middle East. |
|
SOUTH_AMERICA
South America. |
|
USA
USA. |
|
WORLD
World. |
Method Summary | |
---|---|
String |
toString()
|
static GeographicalArea |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static GeographicalArea[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GeographicalArea AFRICA
public static final GeographicalArea ASIA
public static final GeographicalArea EUROPE
public static final GeographicalArea MIDDLE_EAST
public static final GeographicalArea SOUTH_AMERICA
public static final GeographicalArea USA
public static final GeographicalArea WORLD
Method Detail |
---|
public static final GeographicalArea[] values()
for(GeographicalArea c : GeographicalArea.values()) System.out.println(c);
public static GeographicalArea valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic String toString()
toString
in class Enum<GeographicalArea>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |