public class CachedRow
extends java.lang.Object
implements android.os.Parcelable
| Modifier and Type | Field and Description |
|---|---|
static android.os.Parcelable.Creator<CachedRow> |
CREATOR |
| Modifier | Constructor and Description |
|---|---|
|
CachedRow(int row,
android.util.SparseArray<java.lang.Object> cellRows) |
protected |
CachedRow(android.os.Parcel in) |
| Modifier and Type | Method and Description |
|---|---|
int |
describeContents()
Describe the kinds of special objects contained in this Parcelable
instance's marshaled representation.
|
android.util.SparseArray<java.lang.Object> |
getCellRows() |
int |
getRow() |
void |
writeToParcel(android.os.Parcel dest,
int flags)
Flatten this object in to a Parcel.
|
public static final android.os.Parcelable.Creator<CachedRow> CREATOR
public CachedRow(int row,
android.util.SparseArray<java.lang.Object> cellRows)
protected CachedRow(android.os.Parcel in)
public int getRow()
public android.util.SparseArray<java.lang.Object> getCellRows()
public int describeContents()
writeToParcel(Parcel, int),
the return value of this method must include the
Parcelable.CONTENTS_FILE_DESCRIPTOR bit.describeContents in interface android.os.Parcelablepublic void writeToParcel(android.os.Parcel dest,
int flags)
writeToParcel in interface android.os.Parcelabledest - The Parcel in which the object should be written.flags - Additional flags about how the object should be written. May be 0 or Parcelable.PARCELABLE_WRITE_RETURN_VALUE.