Package wt.part

Class PartType

All Implemented Interfaces:
Serializable, Comparable, EnumeratedType, LocalizableMetadata, LocalizableMessage, Message

@GenAsEnumeratedType(supportedAPI=PUBLIC) public final class PartType extends _PartType
PartType is an enumerated type indicating whether a part is a separable or inseparable assembly or a component.

Supported API: true

Extendable: false
See Also:
  • Field Details

    • SEPARABLE

      public static final PartType SEPARABLE
      Indicates that the object can be decomposed without damaging the object. Generally used by parts, it also indicates that the part is an assembly and can have sub-assemblies.

      Supported API: true
    • INSEPARABLE

      public static final PartType INSEPARABLE
      Indicates that the object can not be decomposed without damaging the object or causing other harm. Generally used by parts, it indicates that the part is an assembly and is built from sub-assemblies, but can not be separated after it is built.

      Supported API: true
    • COMPONENT

      public static final PartType COMPONENT
      Indicates that the object is a component. Generally used by parts, it indicates that the part is a component and is not built from sub-parts.

      Supported API: true