public enum RowHousingType extends java.lang.Enum<RowHousingType>
Enum Constant and Description |
---|
L_SHAPE_DETACHED |
RECTANGULAR_DUPLEX |
SQUARE_DETACHED |
T_SHAPE_DUPLEX |
T_SHAPE_ROW |
THIN_DUPLEX |
Modifier and Type | Method and Description |
---|---|
static RowHousingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RowHousingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowHousingType T_SHAPE_ROW
public static final RowHousingType T_SHAPE_DUPLEX
public static final RowHousingType RECTANGULAR_DUPLEX
public static final RowHousingType THIN_DUPLEX
public static final RowHousingType SQUARE_DETACHED
public static final RowHousingType L_SHAPE_DETACHED
public static RowHousingType[] values()
for (RowHousingType c : RowHousingType.values()) System.out.println(c);
public static RowHousingType 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