You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
531 B

package android.os;
/**
* @hide
*/
parcelable StatsDimensionsValueParcel {
// Field equals atomTag for top level StatsDimensionsValueParcels or
// positions in depth (1-indexed) for lower level parcels.
int field;
// Indicator for which type of value is stored. Should be set to one
// of the constants in StatsDimensionsValue.java.
int valueType;
String stringValue;
int intValue;
long longValue;
boolean boolValue;
float floatValue;
StatsDimensionsValueParcel[] tupleValue;
}