Package wt.part
Class PartType
java.lang.Object
wt.fc.EnumeratedType
wt.part._PartType
wt.part.PartType
- All Implemented Interfaces:
Serializable,Comparable,EnumeratedType,LocalizableMetadata,LocalizableMessage,Message
PartType is an enumerated type indicating whether a part is a separable
or inseparable assembly or a component.
Supported API: true
Extendable: false
Supported API: true
Extendable: false
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PartTypeIndicates that the object is a component.static final PartTypeIndicates that the object can not be decomposed without damaging the object or causing other harm.static final PartTypeIndicates that the object can be decomposed without damaging the object.Fields inherited from interface wt.meta.EnumeratedType
DEFAULT_VALUE, ORDER, SELECTABLE -
Method Summary
Methods inherited from class wt.part._PartType
getPartTypeDefault, getPartTypeSet, getValueSet, toPartTypeMethods inherited from class wt.fc.EnumeratedType
equals, getDisplay, getLocalizedMessage, getOrder, getSelectableValueSet, getStringValue, getStringValue, hashCode, isDefaultValue, isDefaultValue, isSelectable, main, toEnumeratedType, toEnumeratedType, toString
-
Field Details
-
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
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
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
-