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