public enum StandardPropertyURN extends java.lang.Enum<StandardPropertyURN>
Enum Constant and Description |
---|
APEXES |
BLOCKADES |
BROKENNESS |
BUILDING_AREA_GROUND |
BUILDING_AREA_TOTAL |
BUILDING_ATTRIBUTES |
BUILDING_CODE |
BURIEDNESS |
DAMAGE |
DIRECTION |
EDGES |
FIERYNESS |
FLOORS |
HP |
IGNITION |
IMPORTANCE |
LATITUDE |
LONGITUDE |
POSITION |
POSITION_HISTORY |
REPAIR_COST |
STAMINA |
START_TIME |
TEMPERATURE |
TRAVEL_DISTANCE |
WATER_QUANTITY |
WIND_DIRECTION |
WIND_FORCE |
X |
Y |
Modifier and Type | Method and Description |
---|---|
static StandardPropertyURN |
fromString(java.lang.String s)
Convert a String to a StandardPropertyURN.
|
java.lang.String |
toString() |
static StandardPropertyURN |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardPropertyURN[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardPropertyURN START_TIME
public static final StandardPropertyURN LONGITUDE
public static final StandardPropertyURN LATITUDE
public static final StandardPropertyURN WIND_FORCE
public static final StandardPropertyURN WIND_DIRECTION
public static final StandardPropertyURN X
public static final StandardPropertyURN Y
public static final StandardPropertyURN BLOCKADES
public static final StandardPropertyURN REPAIR_COST
public static final StandardPropertyURN FLOORS
public static final StandardPropertyURN BUILDING_ATTRIBUTES
public static final StandardPropertyURN IGNITION
public static final StandardPropertyURN FIERYNESS
public static final StandardPropertyURN BROKENNESS
public static final StandardPropertyURN BUILDING_CODE
public static final StandardPropertyURN BUILDING_AREA_GROUND
public static final StandardPropertyURN BUILDING_AREA_TOTAL
public static final StandardPropertyURN APEXES
public static final StandardPropertyURN EDGES
public static final StandardPropertyURN POSITION
public static final StandardPropertyURN DIRECTION
public static final StandardPropertyURN POSITION_HISTORY
public static final StandardPropertyURN STAMINA
public static final StandardPropertyURN HP
public static final StandardPropertyURN DAMAGE
public static final StandardPropertyURN BURIEDNESS
public static final StandardPropertyURN TRAVEL_DISTANCE
public static final StandardPropertyURN WATER_QUANTITY
public static final StandardPropertyURN TEMPERATURE
public static final StandardPropertyURN IMPORTANCE
public static StandardPropertyURN[] values()
for (StandardPropertyURN c : StandardPropertyURN.values()) System.out.println(c);
public static StandardPropertyURN valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<StandardPropertyURN>
public static StandardPropertyURN fromString(java.lang.String s)
s
- The String to convert.