public static enum TimeTrackingConfiguration.Mode extends Enum<TimeTrackingConfiguration.Mode>
Enum Constant and Description |
---|
LEGACY
Original and Remaining Estimate are presented in one field which "switches" its behaviour depending on the
issue's state of work.
|
MODERN
Original and Remaining Estimate are presented individually and are at all times independently editable.
|
Modifier and Type | Method and Description |
---|---|
static TimeTrackingConfiguration.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeTrackingConfiguration.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeTrackingConfiguration.Mode LEGACY
public static final TimeTrackingConfiguration.Mode MODERN
public static TimeTrackingConfiguration.Mode[] values()
for (TimeTrackingConfiguration.Mode c : TimeTrackingConfiguration.Mode.values()) System.out.println(c);
public static TimeTrackingConfiguration.Mode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2002-2015 Atlassian. All Rights Reserved.