Interface Material


public interface Material
Represents the material of a component. Corresponds to IfcMaterial.
Since:
9.10.3
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns name of the material constituent if it exists, otherwise returns an empty string.
    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

      Optional<String> 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