Enum TDAPI_DIRECTORY
- java.lang.Object
-
- java.lang.Enum<TDAPI_DIRECTORY>
-
- step.repository.alm.v16.otaclient.TDAPI_DIRECTORY
-
- All Implemented Interfaces:
com4j.ComEnum
,java.io.Serializable
,java.lang.Comparable<TDAPI_DIRECTORY>
public enum TDAPI_DIRECTORY extends java.lang.Enum<TDAPI_DIRECTORY> implements com4j.ComEnum
Storage locations.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TDOLE_ATTACH_DIRECTORY
The Attachment Repository.TDOLE_BIN_DIRECTORY
The General Bin directory.TDOLE_CHECKOUT_DIRECTORY
The checkout repository directory.TDOLE_PROGECT_DIRECTORY
The main project directory.TDOLE_PROJECT_DIRECTORY
The main project directory.TDOLE_RESOURCE_DIRECTORY
The resource repository directory.TDOLE_SHARED_DIRECTORY
The shared path of the directories.TDOLE_SITE_REPOS_DIRECTORY
The TD root repository directory.TDOLE_TEST_DIRECTORY
The test repository directory.TDOLE_USER_DIRECTORIES
The User Directories List.TDOLE_VCSDB_DIRECTORY
The vcsDb repository directory.TDOLE_VIEW_DIRECTORY
The checkout repository directory.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
comEnumValue()
static TDAPI_DIRECTORY
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TDAPI_DIRECTORY[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TDOLE_PROGECT_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_PROGECT_DIRECTORY
The main project directory.
The value of this constant is 0
-
TDOLE_PROJECT_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_PROJECT_DIRECTORY
The main project directory.
The value of this constant is 0
-
TDOLE_BIN_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_BIN_DIRECTORY
The General Bin directory.
The value of this constant is 1
-
TDOLE_TEST_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_TEST_DIRECTORY
The test repository directory.
The value of this constant is 2
-
TDOLE_ATTACH_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_ATTACH_DIRECTORY
The Attachment Repository.
The value of this constant is 3
-
TDOLE_USER_DIRECTORIES
public static final TDAPI_DIRECTORY TDOLE_USER_DIRECTORIES
The User Directories List.
The value of this constant is 4
-
TDOLE_SHARED_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_SHARED_DIRECTORY
The shared path of the directories.
The value of this constant is 128
-
TDOLE_CHECKOUT_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_CHECKOUT_DIRECTORY
The checkout repository directory.
The value of this constant is 8
-
TDOLE_VIEW_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_VIEW_DIRECTORY
The checkout repository directory.
The value of this constant is 16
-
TDOLE_VCSDB_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_VCSDB_DIRECTORY
The vcsDb repository directory.
The value of this constant is 32
-
TDOLE_SITE_REPOS_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_SITE_REPOS_DIRECTORY
The TD root repository directory.
The value of this constant is 64
-
TDOLE_RESOURCE_DIRECTORY
public static final TDAPI_DIRECTORY TDOLE_RESOURCE_DIRECTORY
The resource repository directory.
The value of this constant is 256
-
-
Method Detail
-
values
public static TDAPI_DIRECTORY[] 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_DIRECTORY c : TDAPI_DIRECTORY.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_DIRECTORY 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 namejava.lang.NullPointerException
- if the argument is null
-
comEnumValue
public int comEnumValue()
- Specified by:
comEnumValue
in interfacecom4j.ComEnum
-
-