1 package android.os;
2 
3 /**
4  * @hide
5  */
6 parcelable StatsDimensionsValueParcel {
7     // Field equals atomTag for top level StatsDimensionsValueParcels or
8     // positions in depth (1-indexed) for lower level parcels.
9     int field;
10 
11     // Indicator for which type of value is stored. Should be set to one
12     // of the constants in StatsDimensionsValue.java.
13     int valueType;
14 
15     String stringValue;
16     int intValue;
17     long longValue;
18     boolean boolValue;
19     float floatValue;
20     StatsDimensionsValueParcel[] tupleValue;
21 }
22