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