Enum Covering.Type

    • Enum Constant Detail

      • CEILING

        public static final Covering.Type CEILING
        Represents a ceiling.
        Since:
        9.10.3
      • FLOORING

        public static final Covering.Type FLOORING
        Represents a flooring.
        Since:
        9.10.3
      • CLADDING

        public static final Covering.Type CLADDING
        Represents a cladding.
        Since:
        9.10.3
      • ROOFING

        public static final Covering.Type ROOFING
        Represents a roof covering.
        Since:
        9.10.3
      • INSULATION

        public static final Covering.Type INSULATION
        Represents the covering used to insulate an element for thermal or acoustic purposes.
        Since:
        9.10.3
      • MEMBRANE

        public static final Covering.Type MEMBRANE
        An impervious layer that could be used for e.g. roof covering (below tiling - that may be known as sarking etc.) or as a damp proof course membrane.
        Since:
        9.10.3
      • SLEEVING

        public static final Covering.Type SLEEVING
        Used to isolate a distribution element from a space in which it is contained.
        Since:
        9.10.3
      • WRAPPING

        public static final Covering.Type WRAPPING
        Used for wrapping particularly of distribution elements using tape.
        Since:
        9.10.3
      • USERDEFINED

        public static final Covering.Type USERDEFINED
        User-defined covering element.
        Since:
        9.10.3
      • NOTDEFINED

        public static final Covering.Type NOTDEFINED
        Undefined covering element.
        Since:
        9.10.3
    • Method Detail

      • values

        public static Covering.Type[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Covering.Type c : Covering.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Covering.Type 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