public enum IfcDoorTypeEnum extends Enum<IfcDoorTypeEnum>
Enum Constant and Description |
---|
DOOR |
GATE |
NOTDEFINED |
TRAPDOOR |
USERDEFINED |
Modifier and Type | Method and Description |
---|---|
static IfcDoorTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IfcDoorTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IfcDoorTypeEnum DOOR
public static final IfcDoorTypeEnum GATE
public static final IfcDoorTypeEnum TRAPDOOR
public static final IfcDoorTypeEnum USERDEFINED
public static final IfcDoorTypeEnum NOTDEFINED
public static IfcDoorTypeEnum[] values()
for (IfcDoorTypeEnum c : IfcDoorTypeEnum.values()) System.out.println(c);
public static IfcDoorTypeEnum 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