android.provider
Enum Checkin.Stats.Tag
java.lang.Object
java.lang.Enum<Checkin.Stats.Tag>
android.provider.Checkin.Stats.Tag
- All Implemented Interfaces:
- Serializable, Comparable<Checkin.Stats.Tag>
- Enclosing interface:
- Checkin.Stats
public static enum Checkin.Stats.Tag
- extends Enum<Checkin.Stats.Tag>
Valid tag values. Extend as necessary for your needs.
CRASHES_REPORTED
public static final Checkin.Stats.Tag CRASHES_REPORTED
CRASHES_TRUNCATED
public static final Checkin.Stats.Tag CRASHES_TRUNCATED
ELAPSED_REALTIME_SEC
public static final Checkin.Stats.Tag ELAPSED_REALTIME_SEC
ELAPSED_UPTIME_SEC
public static final Checkin.Stats.Tag ELAPSED_UPTIME_SEC
HTTP_STATUS
public static final Checkin.Stats.Tag HTTP_STATUS
PHONE_GSM_REGISTERED
public static final Checkin.Stats.Tag PHONE_GSM_REGISTERED
PHONE_GPRS_ATTEMPTED
public static final Checkin.Stats.Tag PHONE_GPRS_ATTEMPTED
PHONE_GPRS_CONNECTED
public static final Checkin.Stats.Tag PHONE_GPRS_CONNECTED
PHONE_RADIO_RESETS
public static final Checkin.Stats.Tag PHONE_RADIO_RESETS
TEST
public static final Checkin.Stats.Tag TEST
NETWORK_RX_MOBILE
public static final Checkin.Stats.Tag NETWORK_RX_MOBILE
NETWORK_TX_MOBILE
public static final Checkin.Stats.Tag NETWORK_TX_MOBILE
values
public static Checkin.Stats.Tag[] 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 (Checkin.Stats.Tag c : Checkin.Stats.Tag.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Checkin.Stats.Tag 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
Please submit a feedback, bug or feature