Enum TDAPI_DATATYPES

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

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

    Data types.

    • Enum Constant Detail

      • TDOLE_LONG

        public static final TDAPI_DATATYPES TDOLE_LONG

        Long integer.

        The value of this constant is 0

      • TDOLE_ULONG

        public static final TDAPI_DATATYPES TDOLE_ULONG

        Unsigned long integer.

        The value of this constant is 1

      • TDOLE_FLOAT

        public static final TDAPI_DATATYPES TDOLE_FLOAT

        Floating point number.

        The value of this constant is 2

      • TDOLE_STRING

        public static final TDAPI_DATATYPES TDOLE_STRING

        String.

        The value of this constant is 3

      • TDOLE_MEMO

        public static final TDAPI_DATATYPES TDOLE_MEMO

        Memo.

        The value of this constant is 4

      • TDOLE_DATE

        public static final TDAPI_DATATYPES TDOLE_DATE

        Date.

        The value of this constant is 5

      • TDOLE_TIMESTAMP

        public static final TDAPI_DATATYPES TDOLE_TIMESTAMP

        Time stamp.

        The value of this constant is 6

      • TDOLE_TREENODE

        public static final TDAPI_DATATYPES TDOLE_TREENODE

        General tree node.

        The value of this constant is 7

      • TDOLE_USER_LIST

        public static final TDAPI_DATATYPES TDOLE_USER_LIST

        List of users.

        The value of this constant is 8

      • TDOLE_TESTSET_LIST

        public static final TDAPI_DATATYPES TDOLE_TESTSET_LIST

        List of test sets.

        The value of this constant is 9

      • TDOLE_HOST_LIST

        public static final TDAPI_DATATYPES TDOLE_HOST_LIST

        List of hosts.

        The value of this constant is 10

      • TDOLE_SUBJECT_TREENODE

        public static final TDAPI_DATATYPES TDOLE_SUBJECT_TREENODE

        Subject tree node.

        The value of this constant is 11

      • TDOLE_TESTSET_FOLDER

        public static final TDAPI_DATATYPES TDOLE_TESTSET_FOLDER

        Test set folders tree node.

        The value of this constant is 12

      • TDOLE_REQUIREMENT_TREENODE

        public static final TDAPI_DATATYPES TDOLE_REQUIREMENT_TREENODE

        Requirements tree node.

        The value of this constant is 13

      • TDOLE_REQUIREMENT_TYPE_ID

        public static final TDAPI_DATATYPES TDOLE_REQUIREMENT_TYPE_ID

        Requirement type ID.

        The value of this constant is 14

      • TDOLE_RELEASE_SINGLE_TREENODE

        public static final TDAPI_DATATYPES TDOLE_RELEASE_SINGLE_TREENODE

        Release single-value tree node.

        The value of this constant is 15

      • TDOLE_RELEASE_MULTI_TREENODE

        public static final TDAPI_DATATYPES TDOLE_RELEASE_MULTI_TREENODE

        Release multi-value tree node.

        The value of this constant is 16

      • TDOLE_RELEASECYCLE_SINGLE_TREENODE

        public static final TDAPI_DATATYPES TDOLE_RELEASECYCLE_SINGLE_TREENODE

        ReleaseCycle single-value tree node.

        The value of this constant is 17

      • TDOLE_RELEASECYCLE_MULTI_TREENODE

        public static final TDAPI_DATATYPES TDOLE_RELEASECYCLE_MULTI_TREENODE

        ReleaseCycle multi-value tree node.

        The value of this constant is 18

      • TDOLE_APPLICATION_ENTITY_FOLDER

        public static final TDAPI_DATATYPES TDOLE_APPLICATION_ENTITY_FOLDER

        Application entity folders tree node.

        The value of this constant is 19

      • TDOLE_CHANGE_ENTITY_FOLDER

        public static final TDAPI_DATATYPES TDOLE_CHANGE_ENTITY_FOLDER

        Change entity folders tree node.

        The value of this constant is 20

      • TDOLE_DataType_SINGLE_TREENODE

        public static final TDAPI_DATATYPES TDOLE_DataType_SINGLE_TREENODE

        DataType single-value tree node.

        The value of this constant is 21

      • TDOLE_DataType_MULTI_TREENODE

        public static final TDAPI_DATATYPES TDOLE_DataType_MULTI_TREENODE

        DataType multi-value tree node.

        The value of this constant is 22

      • TDOLE_BASELINES

        public static final TDAPI_DATATYPES TDOLE_BASELINES

        DataType Baselines.

        The value of this constant is 23

      • TDOLE_TEST_CLASS

        public static final TDAPI_DATATYPES TDOLE_TEST_CLASS

        DataType Test Class.

        The value of this constant is 24

      • TDOLE_DATETIME

        public static final TDAPI_DATATYPES TDOLE_DATETIME

        Date and Time.

        The value of this constant is 25

      • TDOLE_RESOURCE_FOLDER

        public static final TDAPI_DATATYPES TDOLE_RESOURCE_FOLDER

        Resources tree node.

        The value of this constant is 26

      • TDOLE_ENCRYPTED_STRING

        public static final TDAPI_DATATYPES TDOLE_ENCRYPTED_STRING

        Encrypted String.

        The value of this constant is 27

      • TDOLE_APPLICATION_COMPONENT_ENTITY

        public static final TDAPI_DATATYPES TDOLE_APPLICATION_COMPONENT_ENTITY

        Application component entity.

        The value of this constant is 28

      • TDOLE_ENCRYPTED_STRING_EX

        public static final TDAPI_DATATYPES TDOLE_ENCRYPTED_STRING_EX

        Encrypted String Ex.

        The value of this constant is 29

    • Method Detail

      • values

        public static TDAPI_DATATYPES[] 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_DATATYPES c : TDAPI_DATATYPES.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_DATATYPES 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