Package net.storm.api.game
Enum HouseLocation
- java.lang.Object
-
- java.lang.Enum<HouseLocation>
-
- net.storm.api.game.HouseLocation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HouseLocation>
public enum HouseLocation extends java.lang.Enum<HouseLocation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALDARIN
BRIMHAVEN
HOSIDIUS
POLLNIVEACH
PRIFDDINAS
RELLEKKA
RIMMINGTON
TAVERLY
YANILLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HouseLocation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HouseLocation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RIMMINGTON
public static final HouseLocation RIMMINGTON
-
TAVERLY
public static final HouseLocation TAVERLY
-
POLLNIVEACH
public static final HouseLocation POLLNIVEACH
-
RELLEKKA
public static final HouseLocation RELLEKKA
-
BRIMHAVEN
public static final HouseLocation BRIMHAVEN
-
YANILLE
public static final HouseLocation YANILLE
-
HOSIDIUS
public static final HouseLocation HOSIDIUS
-
PRIFDDINAS
public static final HouseLocation PRIFDDINAS
-
ALDARIN
public static final HouseLocation ALDARIN
-
-
Method Detail
-
values
public static HouseLocation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HouseLocation c : HouseLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HouseLocation valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-