Enum TDMAIL_FLAGS
- java.lang.Object
-
- java.lang.Enum<TDMAIL_FLAGS>
-
- step.repository.alm.v16.otaclient.TDMAIL_FLAGS
-
- All Implemented Interfaces:
com4j.ComEnum
,java.io.Serializable
,java.lang.Comparable<TDMAIL_FLAGS>
public enum TDMAIL_FLAGS extends java.lang.Enum<TDMAIL_FLAGS> implements com4j.ComEnum
Items to include in mail.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TDMAIL_ACTIVITIES
Include activities of Model.TDMAIL_ATTACHMENT
Send the entity's attachments.TDMAIL_ATTACHMENT_DES_STEP
Include attachments of design steps.TDMAIL_COMMENT_AS_BODY
Use the Comment argument of the Mail method as the message body.TDMAIL_COVER_TEST
Include test coverage.TDMAIL_DES_STEP
Include design steps.TDMAIL_HISTORY
Include the entity's history.TDMAIL_LINKAGE
Include linkage of Model.TDMAIL_PATHS
Include paths of Model.TDMAIL_RUN_STEP
Include run steps.TDMAIL_RUNS
Applies to test instance.TDMAIL_SEND_TO_OWNER_ON_ASYNC_FAIL
Applies to any email message.TDMAIL_SINGLEMAIL
Single Mail.(Obsolete.TDMAIL_SNAPSHOT
Include snapshot for component.TDMAIL_TEXT
Send mail as plain test.TDMAIL_TRACE_REQ
Include traced requirements.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
comEnumValue()
static TDMAIL_FLAGS
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TDMAIL_FLAGS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TDMAIL_ATTACHMENT
public static final TDMAIL_FLAGS TDMAIL_ATTACHMENT
Send the entity's attachments.
The value of this constant is 1
-
TDMAIL_HISTORY
public static final TDMAIL_FLAGS TDMAIL_HISTORY
Include the entity's history.
The value of this constant is 2
-
TDMAIL_TEXT
public static final TDMAIL_FLAGS TDMAIL_TEXT
Send mail as plain test.
The value of this constant is 4
-
TDMAIL_DES_STEP
public static final TDMAIL_FLAGS TDMAIL_DES_STEP
Include design steps.
The value of this constant is 8
-
TDMAIL_COVER_TEST
public static final TDMAIL_FLAGS TDMAIL_COVER_TEST
Include test coverage. Applies only to requirements.
The value of this constant is 16
-
TDMAIL_SINGLEMAIL
public static final TDMAIL_FLAGS TDMAIL_SINGLEMAIL
Single Mail.(Obsolete. Retained for backward compatibility).
The value of this constant is 32
-
TDMAIL_COMMENT_AS_BODY
public static final TDMAIL_FLAGS TDMAIL_COMMENT_AS_BODY
Use the Comment argument of the Mail method as the message body. Used by UI when sending custom e-mail.
The value of this constant is 64
-
TDMAIL_TRACE_REQ
public static final TDMAIL_FLAGS TDMAIL_TRACE_REQ
Include traced requirements.
The value of this constant is 128
-
TDMAIL_SNAPSHOT
public static final TDMAIL_FLAGS TDMAIL_SNAPSHOT
Include snapshot for component.
The value of this constant is 256
-
TDMAIL_ACTIVITIES
public static final TDMAIL_FLAGS TDMAIL_ACTIVITIES
Include activities of Model.
The value of this constant is 512
-
TDMAIL_PATHS
public static final TDMAIL_FLAGS TDMAIL_PATHS
Include paths of Model.
The value of this constant is 1024
-
TDMAIL_LINKAGE
public static final TDMAIL_FLAGS TDMAIL_LINKAGE
Include linkage of Model.
The value of this constant is 2048
-
TDMAIL_RUN_STEP
public static final TDMAIL_FLAGS TDMAIL_RUN_STEP
Include run steps. For test instance,includes steps of most recent run.
The value of this constant is 4096
-
TDMAIL_RUNS
public static final TDMAIL_FLAGS TDMAIL_RUNS
Applies to test instance. Include run steps of most recent run.
The value of this constant is 8192
-
TDMAIL_SEND_TO_OWNER_ON_ASYNC_FAIL
public static final TDMAIL_FLAGS TDMAIL_SEND_TO_OWNER_ON_ASYNC_FAIL
Applies to any email message. Indicates that if message sent in ASYNC mode and failed, it will be re-sent to sender.
The value of this constant is 16384
-
TDMAIL_ATTACHMENT_DES_STEP
public static final TDMAIL_FLAGS TDMAIL_ATTACHMENT_DES_STEP
Include attachments of design steps.
The value of this constant is 32768
-
-
Method Detail
-
values
public static TDMAIL_FLAGS[] 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 (TDMAIL_FLAGS c : TDMAIL_FLAGS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TDMAIL_FLAGS 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
-
-