Enum TDAPI_PREDEFINED_REQ_TYPES

    • Enum Constant Detail

      • REQ_TYPE_UNDEFINED

        public static final TDAPI_PREDEFINED_REQ_TYPES REQ_TYPE_UNDEFINED

        Undefined requirement type.

        The value of this constant is 0

      • REQ_TYPE_FOLDER

        public static final TDAPI_PREDEFINED_REQ_TYPES REQ_TYPE_FOLDER

        Requirement folder.

        The value of this constant is 1

      • REQ_TYPE_GROUP

        public static final TDAPI_PREDEFINED_REQ_TYPES REQ_TYPE_GROUP

        Requirement group.

        The value of this constant is 2

      • REQ_TYPE_FUNCTIONAL

        public static final TDAPI_PREDEFINED_REQ_TYPES REQ_TYPE_FUNCTIONAL

        Functional requirement.

        The value of this constant is 3

      • REQ_TYPE_BUSINESS

        public static final TDAPI_PREDEFINED_REQ_TYPES REQ_TYPE_BUSINESS

        Business process requirement.

        The value of this constant is 4

      • REQ_TYPE_TESTING

        public static final TDAPI_PREDEFINED_REQ_TYPES REQ_TYPE_TESTING

        Testing requirement.

        The value of this constant is 5

    • Method Detail

      • values

        public static TDAPI_PREDEFINED_REQ_TYPES[] 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 (TDAPI_PREDEFINED_REQ_TYPES c : TDAPI_PREDEFINED_REQ_TYPES.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TDAPI_PREDEFINED_REQ_TYPES valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null