Enum TDAPI_NODE_TYPE

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<TDAPI_NODE_TYPE>

    public enum TDAPI_NODE_TYPE
    extends java.lang.Enum<TDAPI_NODE_TYPE>

    Node Types

    • Enum Constant Detail

      • NODE_TYPE_UNDEFINED

        public static final TDAPI_NODE_TYPE NODE_TYPE_UNDEFINED

        Undefined node type.

        The value of this constant is 0

      • NODE_TYPE_RELEASE_FOLDER

        public static final TDAPI_NODE_TYPE NODE_TYPE_RELEASE_FOLDER

        Release folder node type.

        The value of this constant is 1

      • NODE_TYPE_RELEASE

        public static final TDAPI_NODE_TYPE NODE_TYPE_RELEASE

        Release node type.

        The value of this constant is 2

      • NODE_TYPE_RELEASECYCLE

        public static final TDAPI_NODE_TYPE NODE_TYPE_RELEASECYCLE

        ReleaseCycle node type.

        The value of this constant is 3

      • NODE_TYPE_FAVORITE_FOLDER

        public static final TDAPI_NODE_TYPE NODE_TYPE_FAVORITE_FOLDER

        Favorite folder node type.

        The value of this constant is 4

      • NODE_TYPE_FAVORITE

        public static final TDAPI_NODE_TYPE NODE_TYPE_FAVORITE

        Favorite node type.

        The value of this constant is 5

      • NODE_TYPE_LIBRARY_FOLDER

        public static final TDAPI_NODE_TYPE NODE_TYPE_LIBRARY_FOLDER

        Library Folder node type.

        The value of this constant is 6

      • NODE_TYPE_LIBRARY

        public static final TDAPI_NODE_TYPE NODE_TYPE_LIBRARY

        Library node type.

        The value of this constant is 7

      • NODE_TYPE_LIBRARY_PART

        public static final TDAPI_NODE_TYPE NODE_TYPE_LIBRARY_PART

        Library Part node type.

        The value of this constant is 8

      • NODE_TYPE_BASELINE

        public static final TDAPI_NODE_TYPE NODE_TYPE_BASELINE

        Baseline node type.

        The value of this constant is 9

      • NODE_TYPE_QCRESOURCE_FOLDER

        public static final TDAPI_NODE_TYPE NODE_TYPE_QCRESOURCE_FOLDER

        QC Resource folder node type.

        The value of this constant is 10

      • NODE_TYPE_QCRESOURCE

        public static final TDAPI_NODE_TYPE NODE_TYPE_QCRESOURCE

        QC Resource node type.

        The value of this constant is 11

      • NODE_TYPE_ANALYSISITEM_FOLDER

        public static final TDAPI_NODE_TYPE NODE_TYPE_ANALYSISITEM_FOLDER

        Analysis Item folder node type.

        The value of this constant is 12

      • NODE_TYPE_ANALYSISITEM

        public static final TDAPI_NODE_TYPE NODE_TYPE_ANALYSISITEM

        Analysis Item node type.

        The value of this constant is 13

      • NODE_TYPE_DASHBOARD_FOLDER

        public static final TDAPI_NODE_TYPE NODE_TYPE_DASHBOARD_FOLDER

        dashboard folder node type.

        The value of this constant is 14

      • NODE_TYPE_DASHBOARD_PAGE

        public static final TDAPI_NODE_TYPE NODE_TYPE_DASHBOARD_PAGE

        dashboard page node type.

        The value of this constant is 15

      • NODE_TYPE_COMPARISON

        public static final TDAPI_NODE_TYPE NODE_TYPE_COMPARISON

        Comparison node type.

        The value of this constant is 16

    • Method Detail

      • values

        public static TDAPI_NODE_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_NODE_TYPE c : TDAPI_NODE_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_NODE_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