Enum Beam.Type

    • Enum Constant Detail

      • BEAM

        public static final Beam.Type BEAM
        A standard beam usually used horizontally.
        Since:
        9.10.3
      • JOIST

        public static final Beam.Type JOIST
        A beam used to support a floor or ceiling.
        Since:
        9.10.3
      • LINTEL

        public static final Beam.Type LINTEL
        A a beam or horizontal piece of material over an opening (e.g. door, window).
        Since:
        9.10.3
      • T_BEAM

        public static final Beam.Type T_BEAM
        A T-shape beam that forms part of a slab construction.
        Since:
        9.10.3
      • USERDEFINED

        public static final Beam.Type USERDEFINED
        User-defined linear beam element.
        Since:
        9.10.3
      • NOTDEFINED

        public static final Beam.Type NOTDEFINED
        Undefined linear beam element.
        Since:
        9.10.3
    • Method Detail

      • values

        public static Beam.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 (Beam.Type c : Beam.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 Beam.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