public static enum StandardEntityConstants.BuildingCode extends java.lang.Enum<StandardEntityConstants.BuildingCode>
Enum Constant and Description |
---|
CONCRETE
Reinforced concrete construction.
|
STEEL
Steel frame construction.
|
WOOD
Wooden construction.
|
Modifier and Type | Method and Description |
---|---|
static StandardEntityConstants.BuildingCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardEntityConstants.BuildingCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardEntityConstants.BuildingCode WOOD
public static final StandardEntityConstants.BuildingCode STEEL
public static final StandardEntityConstants.BuildingCode CONCRETE
public static StandardEntityConstants.BuildingCode[] values()
for (StandardEntityConstants.BuildingCode c : StandardEntityConstants.BuildingCode.values()) System.out.println(c);
public static StandardEntityConstants.BuildingCode 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 null