Package com.solibri.smc.api.model
Enum ComponentGeometryType
- All Implemented Interfaces:
Serializable,Comparable<ComponentGeometryType>,java.lang.constant.Constable
Enum with values of geometry types.
- Since:
- 9.12.8
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe boundary representation is a solid 3D geometry defined by collection of connected surface elements.The box is a 3D geometry defined by three dimensions orthogonal to each other.The CSG (constructive solid geometry) is a solid representation of a 3D geometry defined by a collection of geometries combined using regularized boolean operations like difference and union.The extrusion is a solid 3D geometry defined by a 2D shape which is extruded along a path. -
Method Summary
Modifier and TypeMethodDescriptionstatic ComponentGeometryTypeReturns the enum constant of this type with the specified name.static ComponentGeometryType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EXTRUSION
The extrusion is a solid 3D geometry defined by a 2D shape which is extruded along a path.- Since:
- 9.12.8
-
BOUNDARY_REPRESENTATION
The boundary representation is a solid 3D geometry defined by collection of connected surface elements.- Since:
- 9.12.8
-
CSG_SOLID
The CSG (constructive solid geometry) is a solid representation of a 3D geometry defined by a collection of geometries combined using regularized boolean operations like difference and union.- Since:
- 9.12.8
-
BOX
The box is a 3D geometry defined by three dimensions orthogonal to each other.- Since:
- 9.12.8
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-