public static enum TimeTracking.Format extends Enum<TimeTracking.Format>
Represents the "format" which Time Tracking information can be displayed in.
Modifier and Type | Method and Description |
---|---|
static TimeTracking.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeTracking.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeTracking.Format PRETTY
public static final TimeTracking.Format DAYS
public static final TimeTracking.Format HOURS
public static TimeTracking.Format[] values()
for (TimeTracking.Format c : TimeTracking.Format.values()) System.out.println(c);
public static TimeTracking.Format 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-2022 Atlassian. All Rights Reserved.