Enum TDAPI_REQMODE
- java.lang.Object
- 
- java.lang.Enum<TDAPI_REQMODE>
- 
- step.repository.alm.v16.otaclient.TDAPI_REQMODE
 
 
- 
- All Implemented Interfaces:
- com4j.ComEnum,- java.io.Serializable,- java.lang.Comparable<TDAPI_REQMODE>
 
 public enum TDAPI_REQMODE extends java.lang.Enum<TDAPI_REQMODE> implements com4j.ComEnum Flags for requirement factory Find method. Can be combined with binary OR. 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description TDREQMODE_FIND_ANYWHERESearch for pattern anywhere in requirement name.TDREQMODE_FIND_EXACTRequirement name exactly matches pattern.TDREQMODE_FIND_START_WITHRequirement name starts with pattern.TDREQMODE_RECNot in use.TDREQMODE_REM_REM_ALLNot in use.TDREQMODE_SMARTCase sensitive search.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcomEnumValue()static TDAPI_REQMODEvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TDAPI_REQMODE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
TDREQMODE_RECpublic static final TDAPI_REQMODE TDREQMODE_REC Not in use. The value of this constant is 1 
 - 
TDREQMODE_SMARTpublic static final TDAPI_REQMODE TDREQMODE_SMART Case sensitive search. The value of this constant is 2 
 - 
TDREQMODE_REM_REM_ALLpublic static final TDAPI_REQMODE TDREQMODE_REM_REM_ALL Not in use. The value of this constant is 4 
 - 
TDREQMODE_FIND_START_WITHpublic static final TDAPI_REQMODE TDREQMODE_FIND_START_WITH Requirement name starts with pattern. The value of this constant is 8 
 - 
TDREQMODE_FIND_EXACTpublic static final TDAPI_REQMODE TDREQMODE_FIND_EXACT Requirement name exactly matches pattern. The value of this constant is 16 
 - 
TDREQMODE_FIND_ANYWHEREpublic static final TDAPI_REQMODE TDREQMODE_FIND_ANYWHERE Search for pattern anywhere in requirement name. The value of this constant is 32 
 
- 
 - 
Method Detail- 
valuespublic static TDAPI_REQMODE[] 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_REQMODE c : TDAPI_REQMODE.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static TDAPI_REQMODE 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
 
 - 
comEnumValuepublic int comEnumValue() - Specified by:
- comEnumValuein interface- com4j.ComEnum
 
 
- 
 
-