Enum TDAPI_AUTOCOMPLETE_TYPE

  • All Implemented Interfaces:
    com4j.ComEnum, java.io.Serializable, java.lang.Comparable<TDAPI_AUTOCOMPLETE_TYPE>

    public enum TDAPI_AUTOCOMPLETE_TYPE
    extends java.lang.Enum<TDAPI_AUTOCOMPLETE_TYPE>
    implements com4j.ComEnum

    AutoComplete Type.

    • Enum Constant Detail

      • AC_TYPE_NO_AUTOCOMPLETE

        public static final TDAPI_AUTOCOMPLETE_TYPE AC_TYPE_NO_AUTOCOMPLETE

        No autocomplete.

        The value of this constant is 0

      • AC_TYPE_REQ_TO_TEST

        public static final TDAPI_AUTOCOMPLETE_TYPE AC_TYPE_REQ_TO_TEST

        Req to Test autocomplete.

        The value of this constant is 1

      • AC_TYPE_TEST_TO_TEST_INSTANCE

        public static final TDAPI_AUTOCOMPLETE_TYPE AC_TYPE_TEST_TO_TEST_INSTANCE

        Test to all its test instances.

        The value of this constant is 2

      • AC_TYPE_SCOPE_ITEM_TO_DEFECT

        public static final TDAPI_AUTOCOMPLETE_TYPE AC_TYPE_SCOPE_ITEM_TO_DEFECT

        Scope item content to all defects.

        The value of this constant is 4

    • Method Detail

      • values

        public static TDAPI_AUTOCOMPLETE_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 (TDAPI_AUTOCOMPLETE_TYPE c : TDAPI_AUTOCOMPLETE_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 TDAPI_AUTOCOMPLETE_TYPE 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
      • comEnumValue

        public int comEnumValue()
        Specified by:
        comEnumValue in interface com4j.ComEnum