public static enum TimeTracking.Mode extends Enum<TimeTracking.Mode>
Represents a "mode" in which the Time Tracking module operates.
The current modes are:| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
public static final TimeTracking.Mode MODERN
public static final TimeTracking.Mode LEGACY
public static TimeTracking.Mode[] values()
for (TimeTracking.Mode c : TimeTracking.Mode.values()) System.out.println(c);
public static TimeTracking.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 nullpublic String toString()
toString in class Enum<TimeTracking.Mode>Copyright © 2002-2019 Atlassian. All Rights Reserved.