com.atlassian.jira.functest.framework.admin
Enum TimeTracking.Format
java.lang.Object
java.lang.Enum<TimeTracking.Format>
com.atlassian.jira.functest.framework.admin.TimeTracking.Format
- All Implemented Interfaces:
- Serializable, Comparable<TimeTracking.Format>
- Enclosing interface:
- TimeTracking
public static enum TimeTracking.Format
- extends Enum<TimeTracking.Format>
Represents the "format" which Time Tracking information can be displayed in.
- PRETTY
- e.g. "2 days, 4 hours, 30 minutes"
- DAYS
- e.g. "2d 4.5h"
- HOURS
- e.g. "52.5h"
PRETTY
public static final TimeTracking.Format PRETTY
DAYS
public static final TimeTracking.Format DAYS
HOURS
public static final TimeTracking.Format HOURS
values
public static TimeTracking.Format[] 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.Format c : TimeTracking.Format.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.Format 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
Copyright © 2002-2013 Atlassian. All Rights Reserved.