Enum ComponentGeometryType

java.lang.Object
java.lang.Enum<ComponentGeometryType>
com.solibri.smc.api.model.ComponentGeometryType
All Implemented Interfaces:
Serializable, Comparable<ComponentGeometryType>, java.lang.constant.Constable

public enum ComponentGeometryType extends Enum<ComponentGeometryType>
Enum with values of geometry types.
Since:
9.12.8
  • Enum Constant Details

    • EXTRUSION

      public static final ComponentGeometryType 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

      public static final ComponentGeometryType BOUNDARY_REPRESENTATION
      The boundary representation is a solid 3D geometry defined by collection of connected surface elements.
      Since:
      9.12.8
    • CSG_SOLID

      public static final ComponentGeometryType 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

      public static final ComponentGeometryType BOX
      The box is a 3D geometry defined by three dimensions orthogonal to each other.
      Since:
      9.12.8
  • Method Details

    • values

      public static ComponentGeometryType[] 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

      public static ComponentGeometryType valueOf(String name)
      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 name
      NullPointerException - if the argument is null