Package com.solibri.smc.api.model
Interface Material
public interface Material
Represents the material of a component. Corresponds to IfcMaterial.
- Since:
- 9.10.3
-
Method Summary
Modifier and TypeMethodDescriptionReturns name of the material constituent if it exists, otherwise returns an empty string.getName()
Returns the name of this material.Returns the thickness of this material if it exists, otherwise returns an empty double.
-
Method Details
-
getName
String getName()Returns the name of this material.- Returns:
- the name of this material
- Since:
- 9.10.3
-
getConstituentName
Returns name of the material constituent if it exists, otherwise returns an empty string.- Returns:
- the constituent name
- Since:
- 9.13.4
-
getThickness
OptionalDouble getThickness()Returns the thickness of this material if it exists, otherwise returns an empty double.- Returns:
- the thickness of this material if it exists, otherwise returns an empty double
- Since:
- 9.10.3
-