Enum PlayerOwnedHouse
- java.lang.Object
-
- java.lang.Enum<PlayerOwnedHouse>
-
- net.eternalclient.api.wrappers.house.PlayerOwnedHouse
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PlayerOwnedHouse>
public enum PlayerOwnedHouse extends java.lang.Enum<PlayerOwnedHouse>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BRIMHAVEN
HOSIDIUS
POLLNIVNEACH
PRIFDDINAS
RELLEKKA
RIMMINGTON
TAVERLEY
YANILLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description WorldTile
getOutsidePosition()
boolean
isHouseLocation()
static PlayerOwnedHouse
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PlayerOwnedHouse[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RIMMINGTON
public static final PlayerOwnedHouse RIMMINGTON
-
TAVERLEY
public static final PlayerOwnedHouse TAVERLEY
-
POLLNIVNEACH
public static final PlayerOwnedHouse POLLNIVNEACH
-
RELLEKKA
public static final PlayerOwnedHouse RELLEKKA
-
BRIMHAVEN
public static final PlayerOwnedHouse BRIMHAVEN
-
YANILLE
public static final PlayerOwnedHouse YANILLE
-
HOSIDIUS
public static final PlayerOwnedHouse HOSIDIUS
-
PRIFDDINAS
public static final PlayerOwnedHouse PRIFDDINAS
-
-
Method Detail
-
values
public static PlayerOwnedHouse[] 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 (PlayerOwnedHouse c : PlayerOwnedHouse.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlayerOwnedHouse 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
-
getOutsidePosition
public WorldTile getOutsidePosition()
-
isHouseLocation
public boolean isHouseLocation()
-
-