Enum Class UsState

java.lang.Object
java.lang.Enum<UsState>
io.github.cjstehno.testthings.fixtures.UsState
All Implemented Interfaces:
Serializable, Comparable<UsState>, Constable

public enum UsState extends Enum<UsState>
An enumeration of US States.
  • Enum Constant Details

    • ALABAMA

      public static final UsState ALABAMA
      Alabama.
    • ALASKA

      public static final UsState ALASKA
      Alaska.
    • ARIZONA

      public static final UsState ARIZONA
      Arizona.
    • ARKANSAS

      public static final UsState ARKANSAS
      Arkansas.
    • CALIFORNIA

      public static final UsState CALIFORNIA
      California.
    • COLORADO

      public static final UsState COLORADO
      Colorado.
    • CONNECTICUT

      public static final UsState CONNECTICUT
      Connecticut.
    • DELAWARE

      public static final UsState DELAWARE
      Delaware.
    • FLORIDA

      public static final UsState FLORIDA
      Florida.
    • GEORGIA

      public static final UsState GEORGIA
      Georgia.
    • HAWAII

      public static final UsState HAWAII
      Hawaii.
    • IDAHO

      public static final UsState IDAHO
      Idaho.
    • ILLINOIS

      public static final UsState ILLINOIS
      Illinois.
    • INDIANA

      public static final UsState INDIANA
      Indiana.
    • IOWA

      public static final UsState IOWA
      Iowa.
    • KANSAS

      public static final UsState KANSAS
      Kansas.
    • KENTUCKY

      public static final UsState KENTUCKY
      Kentucky.
    • LOUISIANA

      public static final UsState LOUISIANA
      Louisiana.
    • MAINE

      public static final UsState MAINE
      Maine.
    • MARYLAND

      public static final UsState MARYLAND
      Maryland.
    • MASSACHUSETTS

      public static final UsState MASSACHUSETTS
      Massachusetts.
    • MICHIGAN

      public static final UsState MICHIGAN
      Michigan.
    • MINNESOTA

      public static final UsState MINNESOTA
      Minnesota.
    • MISSISSIPPI

      public static final UsState MISSISSIPPI
      Mississippi.
    • MISSOURI

      public static final UsState MISSOURI
      Missouri.
    • MONTANA

      public static final UsState MONTANA
      Montana.
    • NEBRASKA

      public static final UsState NEBRASKA
      Nebraska.
    • NEVADA

      public static final UsState NEVADA
      Nevada.
    • NEW_HAMPSHIRE

      public static final UsState NEW_HAMPSHIRE
      New Hampshire.
    • NEW_JERSEY

      public static final UsState NEW_JERSEY
      New Jersey.
    • NEW_MEXICO

      public static final UsState NEW_MEXICO
      New Mexico.
    • NEW_YORK

      public static final UsState NEW_YORK
      New York.
    • NORTH_CAROLINA

      public static final UsState NORTH_CAROLINA
      North Carolina.
    • NORTH_DAKOTA

      public static final UsState NORTH_DAKOTA
      North Dakota.
    • OHIO

      public static final UsState OHIO
      Ohio.
    • OKLAHOMA

      public static final UsState OKLAHOMA
      Oklahoma.
    • OREGON

      public static final UsState OREGON
      Oregon.
    • PENNSYLVANIA

      public static final UsState PENNSYLVANIA
      Pennsylvania.
    • RHODE_ISLAND

      public static final UsState RHODE_ISLAND
      Rhode Island.
    • SOUTH_CAROLINA

      public static final UsState SOUTH_CAROLINA
      South Carolina.
    • SOUTH_DAKOTA

      public static final UsState SOUTH_DAKOTA
      South Dakota.
    • TENNESSEE

      public static final UsState TENNESSEE
      Tennessee.
    • TEXAS

      public static final UsState TEXAS
      Texas.
    • UTAH

      public static final UsState UTAH
      Utah.
    • VERMONT

      public static final UsState VERMONT
      Vermont.
    • VIRGINIA

      public static final UsState VIRGINIA
      Virginia.
    • WASHINGTON

      public static final UsState WASHINGTON
      Washington.
    • WEST_VIRGINIA

      public static final UsState WEST_VIRGINIA
      West Virginia.
    • WISCONSIN

      public static final UsState WISCONSIN
      Wisconsin.
    • WYOMING

      public static final UsState WYOMING
      Wyoming.
  • Method Details

    • values

      public static UsState[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static UsState valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<UsState>