Android APIs
public class

DataTypeCreateResult

extends Object
implements Result SafeParcelable
java.lang.Object
   ↳ com.google.android.gms.fitness.DataTypeCreateResult

Class Overview

d Result of a DataTypeCreateRequest.

The method getStatus() can be be used to confirm if the request was successful.

In case the calling app is missing the required permissions, the returned status has status code set to NEEDS_OAUTH_PERMISSIONS.In this case the caller should use startResolutionForResult(Activity, int) to start an intent to get the necessary consent from the user before retrying the request.

If the app tries to insert a new data type that conflicts with an existing data type, the returned status has status code set to CONFLICTING_DATA_TYPE.

If the app tried to insert a new data type whose name does not match the app's package name, the returned status has status code set to INCONSISTENT_DATA_TYPE.

Summary

[Expand]
Inherited Constants
From interface android.os.Parcelable
From interface com.google.android.gms.common.internal.safeparcel.SafeParcelable
Fields
public static final Creator<DataTypeCreateResult> CREATOR
Public Methods
int describeContents()
boolean equals(Object that)
DataType getDataType()
Returns the new custom data type inserted.
Status getStatus()
int hashCode()
String toString()
void writeToParcel(Parcel dest, int flags)
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable
From interface com.google.android.gms.common.api.Result

Fields

public static final Creator<DataTypeCreateResult> CREATOR

Public Methods

public int describeContents ()

public boolean equals (Object that)

public DataType getDataType ()

Returns the new custom data type inserted.

public Status getStatus ()

public int hashCode ()

public String toString ()

public void writeToParcel (Parcel dest, int flags)