Package com.javahollic.jira.emh.api
Enum IJEMHDataTypes.ThreadMatchLimitType
- java.lang.Object
-
- java.lang.Enum<IJEMHDataTypes.ThreadMatchLimitType>
-
- com.javahollic.jira.emh.api.IJEMHDataTypes.ThreadMatchLimitType
-
- All Implemented Interfaces:
Serializable
,Comparable<IJEMHDataTypes.ThreadMatchLimitType>
- Enclosing interface:
- IJEMHDataTypes
public static enum IJEMHDataTypes.ThreadMatchLimitType extends Enum<IJEMHDataTypes.ThreadMatchLimitType>
limits how thread checking will/wont match against existing issues, eg, 'resolved' will not match a referred issue ABC-123 if it is resolved, and will cause new issues to be created
-
-
Enum Constant Summary
Enum Constants Enum Constant Description matchesJql
none
notWithResolutions
open
openOrResolvedInLast30days
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IJEMHDataTypes.ThreadMatchLimitType
valueOf(String name)
Returns the enum constant of this type with the specified name.static IJEMHDataTypes.ThreadMatchLimitType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
none
public static final IJEMHDataTypes.ThreadMatchLimitType none
-
open
public static final IJEMHDataTypes.ThreadMatchLimitType open
-
openOrResolvedInLast30days
public static final IJEMHDataTypes.ThreadMatchLimitType openOrResolvedInLast30days
-
notWithResolutions
public static final IJEMHDataTypes.ThreadMatchLimitType notWithResolutions
-
matchesJql
public static final IJEMHDataTypes.ThreadMatchLimitType matchesJql
-
-
Method Detail
-
values
public static IJEMHDataTypes.ThreadMatchLimitType[] 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 (IJEMHDataTypes.ThreadMatchLimitType c : IJEMHDataTypes.ThreadMatchLimitType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IJEMHDataTypes.ThreadMatchLimitType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-