android.content.SyncResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package android.content;
public final class SyncResult
implements android.os.Parcelable
{
public SyncResult() { throw new RuntimeException("Stub!"); }
public boolean hasHardError() { throw new RuntimeException("Stub!"); }
public boolean hasSoftError() { throw new RuntimeException("Stub!"); }
public boolean hasError() { throw new RuntimeException("Stub!"); }
public boolean madeSomeProgress() { throw new RuntimeException("Stub!"); }
public void clear() { throw new RuntimeException("Stub!"); }
public int describeContents() { throw new RuntimeException("Stub!"); }
public void writeToParcel(android.os.Parcel parcel, int flags) { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
public java.lang.String toDebugString() { throw new RuntimeException("Stub!"); }
public final boolean syncAlreadyInProgress;
public boolean tooManyDeletions;
public boolean tooManyRetries;
public boolean databaseError;
public boolean fullSyncRequested;
public boolean partialSyncUnavailable;
public boolean moreRecordsToGet;
public final android.content.SyncStats stats;
public static final android.content.SyncResult ALREADY_IN_PROGRESS;
public static final android.os.Parcelable.Creator CREATOR;
static { ALREADY_IN_PROGRESS = null; CREATOR = null; }
}