public enum TuneAnalyticsManagerState extends Enum<TuneAnalyticsManagerState>
Enum Constant and Description |
---|
BACKGROUND |
FOREGROUND |
NOT_TRACKING |
Modifier and Type | Method and Description |
---|---|
static TuneAnalyticsManagerState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TuneAnalyticsManagerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TuneAnalyticsManagerState NOT_TRACKING
public static final TuneAnalyticsManagerState FOREGROUND
public static final TuneAnalyticsManagerState BACKGROUND
public static TuneAnalyticsManagerState[] values()
for (TuneAnalyticsManagerState c : TuneAnalyticsManagerState.values()) System.out.println(c);
public static TuneAnalyticsManagerState 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 null