Enum Class ComponentDto.AssigneeType

java.lang.Object
java.lang.Enum<ComponentDto.AssigneeType>
de.qytera.qtaf.xray.dto.jira.ComponentDto.AssigneeType
All Implemented Interfaces:
Serializable, Comparable<ComponentDto.AssigneeType>, Constable
Enclosing class:
ComponentDto<U extends UserDto<?,?>>

public static enum ComponentDto.AssigneeType extends Enum<ComponentDto.AssigneeType>
The user type used to determine the assignee for issues created with a component.

Default value: PROJECT_DEFAULT.

  • Enum Constant Details

    • PROJECT_DEFAULT

      public static final ComponentDto.AssigneeType 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

      public static final ComponentDto.AssigneeType COMPONENT_LEAD
      The assignee to any issues created with this component is nominally the lead for the component.
    • PROJECT_LEAD

      public static final ComponentDto.AssigneeType PROJECT_LEAD
      The assignee to any issues created with this component is nominally the lead for the project the component is in.
    • UNASSIGNED

      public static final ComponentDto.AssigneeType UNASSIGNED
      An assignee is not set for issues created with this component.
  • Method Details

    • values

      public static ComponentDto.AssigneeType[] 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

      public static ComponentDto.AssigneeType valueOf(String name)
      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 name
      NullPointerException - if the argument is null