com.atlassian.jira.functest.framework.admin
Enum TimeTracking.Mode

java.lang.Object
  extended by java.lang.Enum<TimeTracking.Mode>
      extended by com.atlassian.jira.functest.framework.admin.TimeTracking.Mode
All Implemented Interfaces:
Serializable, Comparable<TimeTracking.Mode>
Enclosing interface:
TimeTracking

public static enum TimeTracking.Mode
extends Enum<TimeTracking.Mode>

Represents a "mode" in which the Time Tracking module operates.

The current modes are:
MODERN
In this mode, the Original and Remaining estimate can be edited independently.
LEGACY
In this mode, the Original Estimate can only be edited before logging work, and after that the user can only edit the Remaining Estimate. This is being kept for backwards compatibility


Enum Constant Summary
LEGACY
           
MODERN
           
 
Method Summary
 String toString()
           
static TimeTracking.Mode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TimeTracking.Mode[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MODERN

public static final TimeTracking.Mode MODERN

LEGACY

public static final TimeTracking.Mode LEGACY
Method Detail

values

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

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

valueOf

public static TimeTracking.Mode 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 name
NullPointerException - if the argument is null

toString

public String toString()
Overrides:
toString in class Enum<TimeTracking.Mode>


Copyright © 2002-2014 Atlassian. All Rights Reserved.