com.atlassian.greenhopper.model.rapid
Enum SwimlaneStrategy

java.lang.Object
  extended by java.lang.Enum<SwimlaneStrategy>
      extended by com.atlassian.greenhopper.model.rapid.SwimlaneStrategy
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SwimlaneStrategy>

public enum SwimlaneStrategy
extends java.lang.Enum<SwimlaneStrategy>

Represents the possible swimlane strategies which can be configured for a RapidView.

See Also:
SwimlaneService

Enum Constant Summary
ASSIGNEE_UNASSIGNED_FIRST
           
ASSIGNEE_UNASSIGNED_LAST
           
CUSTOM
           
EPIC
           
NONE
           
PARENT_CHILD
           
 
Method Summary
 java.lang.String getId()
           
static SwimlaneStrategy lookup(java.lang.String id)
           
static SwimlaneStrategy valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SwimlaneStrategy[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final SwimlaneStrategy NONE

CUSTOM

public static final SwimlaneStrategy CUSTOM

PARENT_CHILD

public static final SwimlaneStrategy PARENT_CHILD

ASSIGNEE_UNASSIGNED_LAST

public static final SwimlaneStrategy ASSIGNEE_UNASSIGNED_LAST

ASSIGNEE_UNASSIGNED_FIRST

public static final SwimlaneStrategy ASSIGNEE_UNASSIGNED_FIRST

EPIC

public static final SwimlaneStrategy EPIC
Method Detail

values

public static SwimlaneStrategy[] 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 (SwimlaneStrategy c : SwimlaneStrategy.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SwimlaneStrategy 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

lookup

public static SwimlaneStrategy lookup(java.lang.String id)

getId

public java.lang.String getId()


Copyright © 2007-2014 Atlassian. All Rights Reserved.