com.googlecode.charts4j
Enum USAState.Name

java.lang.Object
  extended by java.lang.Enum<USAState.Name>
      extended by com.googlecode.charts4j.USAState.Name
All Implemented Interfaces:
Serializable, Comparable<USAState.Name>
Enclosing class:
USAState

public static enum USAState.Name
extends Enum<USAState.Name>

USA State name.


Enum Constant Summary
ALABAMA
          Alabama.
ALASKA
          Alaska.
ARIZONA
          Arizona.
ARKANSAS
          Arkansas.
CALIFORNIA
          California.
COLORADO
          Colorado.
CONNECTICUT
          Connecticut.
DELAWARE
          Delaware.
FLORIDA
          Florida.
GEORGIA
          Georgia.
HAWAII
          Hawaii.
IDAHO
          Idaho.
ILLINOIS
          Illinois.
INDIANA
          Indiana.
IOWA
          Iowa.
KANSAS
          Kansas.
KENTUCKY
          Kentucky.
LOUISIANA
          Louisiana.
MAINE
          Maine.
MARYLAND
          Maryland.
MASSACHUSETTS
          Massachusetts.
MICHIGAN
          Michigan.
MINNESOTA
          Minnesota.
MISSISSIPPI
          Mississippi.
MISSOURI
          Missouri.
MONTANA
          Montana.
NEBRASKA
          Nebraska.
NEVADA
          Nevada.
NEW_HAMPSHIRE
          New_hampshire.
NEW_JERSEY
          New_jersey.
NEW_MEXICO
          New_mexico.
NEW_YORK
          New_york.
NORTH_CAROLINA
          North_carolina.
NORTH_DAKOTA
          North_dakota.
OHIO
          Ohio.
OKLAHOMA
          Oklahoma.
OREGON
          Oregon.
PENNSYLVANIA
          Pennsylvania.
RHODE_ISLAND
          Rhode_island.
SOUTH_CAROLINA
          South_carolina.
SOUTH_DAKOTA
          South_dakota.
TENNESSEE
          Tennessee.
TEXAS
          Texas.
UTAH
          Utah.
VERMONT
          Vermont.
VIRGINIA
          Virginia.
WASHINGTON
          Washington.
WEST_VIRGINIA
          West_virginia.
WISCONSIN
          Wisconsin.
WYOMING
          Wyoming.
 
Method Summary
 String toString()
          
static USAState.Name valueOf(String name)
          Returns the enum constant of this type with the specified name.
static USAState.Name[] 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

ALABAMA

public static final USAState.Name ALABAMA
Alabama.


ALASKA

public static final USAState.Name ALASKA
Alaska.


ARIZONA

public static final USAState.Name ARIZONA
Arizona.


ARKANSAS

public static final USAState.Name ARKANSAS
Arkansas.


CALIFORNIA

public static final USAState.Name CALIFORNIA
California.


COLORADO

public static final USAState.Name COLORADO
Colorado.


CONNECTICUT

public static final USAState.Name CONNECTICUT
Connecticut.


DELAWARE

public static final USAState.Name DELAWARE
Delaware.


FLORIDA

public static final USAState.Name FLORIDA
Florida.


GEORGIA

public static final USAState.Name GEORGIA
Georgia.


HAWAII

public static final USAState.Name HAWAII
Hawaii.


IDAHO

public static final USAState.Name IDAHO
Idaho.


ILLINOIS

public static final USAState.Name ILLINOIS
Illinois.


INDIANA

public static final USAState.Name INDIANA
Indiana.


IOWA

public static final USAState.Name IOWA
Iowa.


KANSAS

public static final USAState.Name KANSAS
Kansas.


KENTUCKY

public static final USAState.Name KENTUCKY
Kentucky.


LOUISIANA

public static final USAState.Name LOUISIANA
Louisiana.


MAINE

public static final USAState.Name MAINE
Maine.


MARYLAND

public static final USAState.Name MARYLAND
Maryland.


MASSACHUSETTS

public static final USAState.Name MASSACHUSETTS
Massachusetts.


MICHIGAN

public static final USAState.Name MICHIGAN
Michigan.


MINNESOTA

public static final USAState.Name MINNESOTA
Minnesota.


MISSISSIPPI

public static final USAState.Name MISSISSIPPI
Mississippi.


MISSOURI

public static final USAState.Name MISSOURI
Missouri.


MONTANA

public static final USAState.Name MONTANA
Montana.


NEBRASKA

public static final USAState.Name NEBRASKA
Nebraska.


NEVADA

public static final USAState.Name NEVADA
Nevada.


NEW_HAMPSHIRE

public static final USAState.Name NEW_HAMPSHIRE
New_hampshire.


NEW_JERSEY

public static final USAState.Name NEW_JERSEY
New_jersey.


NEW_MEXICO

public static final USAState.Name NEW_MEXICO
New_mexico.


NEW_YORK

public static final USAState.Name NEW_YORK
New_york.


NORTH_CAROLINA

public static final USAState.Name NORTH_CAROLINA
North_carolina.


NORTH_DAKOTA

public static final USAState.Name NORTH_DAKOTA
North_dakota.


OHIO

public static final USAState.Name OHIO
Ohio.


OKLAHOMA

public static final USAState.Name OKLAHOMA
Oklahoma.


OREGON

public static final USAState.Name OREGON
Oregon.


PENNSYLVANIA

public static final USAState.Name PENNSYLVANIA
Pennsylvania.


RHODE_ISLAND

public static final USAState.Name RHODE_ISLAND
Rhode_island.


SOUTH_CAROLINA

public static final USAState.Name SOUTH_CAROLINA
South_carolina.


SOUTH_DAKOTA

public static final USAState.Name SOUTH_DAKOTA
South_dakota.


TENNESSEE

public static final USAState.Name TENNESSEE
Tennessee.


TEXAS

public static final USAState.Name TEXAS
Texas.


UTAH

public static final USAState.Name UTAH
Utah.


VERMONT

public static final USAState.Name VERMONT
Vermont.


VIRGINIA

public static final USAState.Name VIRGINIA
Virginia.


WASHINGTON

public static final USAState.Name WASHINGTON
Washington.


WEST_VIRGINIA

public static final USAState.Name WEST_VIRGINIA
West_virginia.


WISCONSIN

public static final USAState.Name WISCONSIN
Wisconsin.


WYOMING

public static final USAState.Name WYOMING
Wyoming.

Method Detail

values

public static final USAState.Name[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(USAState.Name c : USAState.Name.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static USAState.Name valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name

toString

public String toString()

Overrides:
toString in class Enum<USAState.Name>