Package de.qytera.qtaf.xray.dto.jira
Enum Class ComponentDto.AssigneeType
- All Implemented Interfaces:
Serializable,Comparable<ComponentDto.AssigneeType>,Constable
- Enclosing class:
- ComponentDto<U extends UserDto<?,
?>>
The user type used to determine the assignee for issues created with a component.
Default value: PROJECT_DEFAULT.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe assignee to any issues created with this component is nominally the lead for the component.The assignee to any issues created with this component is nominally the default assignee for the project that the component is in.The assignee to any issues created with this component is nominally the lead for the project the component is in.An assignee is not set for issues created with this component. -
Method Summary
Modifier and TypeMethodDescriptionstatic ComponentDto.AssigneeTypeReturns the enum constant of this class with the specified name.static ComponentDto.AssigneeType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PROJECT_DEFAULT
The assignee to any issues created with this component is nominally the default assignee for the project that the component is in. -
COMPONENT_LEAD
The assignee to any issues created with this component is nominally the lead for the component. -
PROJECT_LEAD
The assignee to any issues created with this component is nominally the lead for the project the component is in. -
UNASSIGNED
An assignee is not set for issues created with this component.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-