public enum IfcFurnitureTypeEnum extends Enum<IfcFurnitureTypeEnum>
Enum Constant and Description |
---|
BED |
CHAIR |
DESK |
FILECABINET |
NOTDEFINED |
SHELF |
SOFA |
TABLE |
USERDEFINED |
Modifier and Type | Method and Description |
---|---|
static IfcFurnitureTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IfcFurnitureTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IfcFurnitureTypeEnum CHAIR
public static final IfcFurnitureTypeEnum TABLE
public static final IfcFurnitureTypeEnum DESK
public static final IfcFurnitureTypeEnum BED
public static final IfcFurnitureTypeEnum FILECABINET
public static final IfcFurnitureTypeEnum SHELF
public static final IfcFurnitureTypeEnum SOFA
public static final IfcFurnitureTypeEnum USERDEFINED
public static final IfcFurnitureTypeEnum NOTDEFINED
public static IfcFurnitureTypeEnum[] values()
for (IfcFurnitureTypeEnum c : IfcFurnitureTypeEnum.values()) System.out.println(c);
public static IfcFurnitureTypeEnum valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null