public class android.content.SyncRequest$Builder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.content.SyncRequest$Builder
  super_class: java.lang.Object
{
  private static final int SYNC_TYPE_UNKNOWN;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final int SYNC_TYPE_PERIODIC;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int SYNC_TYPE_ONCE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private static final int SYNC_TARGET_UNKNOWN;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final int SYNC_TARGET_ADAPTER;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private long mSyncFlexTimeSecs;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long mSyncRunTimeSecs;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private android.os.Bundle mCustomExtras;
    descriptor: Landroid/os/Bundle;
    flags: (0x0002) ACC_PRIVATE

  private android.os.Bundle mSyncConfigExtras;
    descriptor: Landroid/os/Bundle;
    flags: (0x0002) ACC_PRIVATE

  private boolean mDisallowMetered;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private int mSyncType;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int mSyncTarget;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean mIsManual;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mNoRetry;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mIgnoreBackoff;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mIgnoreSettings;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mExpedited;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private android.accounts.Account mAccount;
    descriptor: Landroid/accounts/Account;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String mAuthority;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private boolean mRequiresCharging;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.content.SyncRequest$Builder this
         0: .line 254
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 216
            aload 0 /* this */
            iconst_0
            putfield android.content.SyncRequest$Builder.mSyncType:I
         2: .line 218
            aload 0 /* this */
            iconst_0
            putfield android.content.SyncRequest$Builder.mSyncTarget:I
         3: .line 255
            return
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/content/SyncRequest$Builder;

  public android.content.SyncRequest$Builder syncOnce();
    descriptor: ()Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // android.content.SyncRequest$Builder this
         0: .line 266
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncType:I
            ifeq 2
         1: .line 267
            new java.lang.IllegalArgumentException
            dup
            ldc "Sync type has already been defined."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 269
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            putfield android.content.SyncRequest$Builder.mSyncType:I
         3: .line 270
            aload 0 /* this */
            lconst_0
            lconst_0
            invokevirtual android.content.SyncRequest$Builder.setupInterval:(JJ)V
         4: .line 271
            aload 0 /* this */
            areturn
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Landroid/content/SyncRequest$Builder;

  public android.content.SyncRequest$Builder syncPeriodic(long, long);
    descriptor: (JJ)Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // long pollFrequency
        start local 3 // long beforeSeconds
         0: .line 317
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncType:I
            ifeq 2
         1: .line 318
            new java.lang.IllegalArgumentException
            dup
            ldc "Sync type has already been defined."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield android.content.SyncRequest$Builder.mSyncType:I
         3: .line 321
            aload 0 /* this */
            lload 1 /* pollFrequency */
            lload 3 /* beforeSeconds */
            invokevirtual android.content.SyncRequest$Builder.setupInterval:(JJ)V
         4: .line 322
            aload 0 /* this */
            areturn
        end local 3 // long beforeSeconds
        end local 1 // long pollFrequency
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Landroid/content/SyncRequest$Builder;
            0    5     1  pollFrequency  J
            0    5     3  beforeSeconds  J
    MethodParameters:
               Name  Flags
      pollFrequency  
      beforeSeconds  

  private void setupInterval(long, long);
    descriptor: (JJ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // long at
        start local 3 // long before
         0: .line 326
            lload 3 /* before */
            lload 1 /* at */
            lcmp
            ifle 2
         1: .line 327
            new java.lang.IllegalArgumentException
            dup
            ldc "Specified run time for the sync must be after the specified flex time."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* at */
            putfield android.content.SyncRequest$Builder.mSyncRunTimeSecs:J
         3: .line 331
            aload 0 /* this */
            lload 3 /* before */
            putfield android.content.SyncRequest$Builder.mSyncFlexTimeSecs:J
         4: .line 332
            return
        end local 3 // long before
        end local 1 // long at
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Landroid/content/SyncRequest$Builder;
            0    5     1      at  J
            0    5     3  before  J
    MethodParameters:
        Name  Flags
      at      
      before  

  public android.content.SyncRequest$Builder setDisallowMetered(boolean);
    descriptor: (Z)Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // boolean disallow
         0: .line 341
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mIgnoreSettings:Z
            ifeq 2
            iload 1 /* disallow */
            ifeq 2
         1: .line 342
            new java.lang.IllegalArgumentException
            dup
            ldc "setDisallowMetered(true) after having specified that settings are ignored."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 345
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* disallow */
            putfield android.content.SyncRequest$Builder.mDisallowMetered:Z
         3: .line 346
            aload 0 /* this */
            areturn
        end local 1 // boolean disallow
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Landroid/content/SyncRequest$Builder;
            0    4     1  disallow  Z
    MethodParameters:
          Name  Flags
      disallow  

  public android.content.SyncRequest$Builder setRequiresCharging(boolean);
    descriptor: (Z)Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // boolean requiresCharging
         0: .line 354
            aload 0 /* this */
            iload 1 /* requiresCharging */
            putfield android.content.SyncRequest$Builder.mRequiresCharging:Z
         1: .line 355
            aload 0 /* this */
            areturn
        end local 1 // boolean requiresCharging
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Landroid/content/SyncRequest$Builder;
            0    2     1  requiresCharging  Z
    MethodParameters:
                  Name  Flags
      requiresCharging  

  public android.content.SyncRequest$Builder setSyncAdapter(android.accounts.Account, java.lang.String);
    descriptor: (Landroid/accounts/Account;Ljava/lang/String;)Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // android.accounts.Account account
        start local 2 // java.lang.String authority
         0: .line 367
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncTarget:I
            ifeq 2
         1: .line 368
            new java.lang.IllegalArgumentException
            dup
            ldc "Sync target has already been defined."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 370
      StackMap locals:
      StackMap stack:
            aload 2 /* authority */
            ifnull 4
            aload 2 /* authority */
            invokevirtual java.lang.String.length:()I
            ifne 4
         3: .line 371
            new java.lang.IllegalArgumentException
            dup
            ldc "Authority must be non-empty"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 373
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            putfield android.content.SyncRequest$Builder.mSyncTarget:I
         5: .line 374
            aload 0 /* this */
            aload 1 /* account */
            putfield android.content.SyncRequest$Builder.mAccount:Landroid/accounts/Account;
         6: .line 375
            aload 0 /* this */
            aload 2 /* authority */
            putfield android.content.SyncRequest$Builder.mAuthority:Ljava/lang/String;
         7: .line 376
            aload 0 /* this */
            areturn
        end local 2 // java.lang.String authority
        end local 1 // android.accounts.Account account
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Landroid/content/SyncRequest$Builder;
            0    8     1    account  Landroid/accounts/Account;
            0    8     2  authority  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      account    
      authority  

  public android.content.SyncRequest$Builder setExtras(android.os.Bundle);
    descriptor: (Landroid/os/Bundle;)Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // android.os.Bundle bundle
         0: .line 415
            aload 0 /* this */
            aload 1 /* bundle */
            putfield android.content.SyncRequest$Builder.mCustomExtras:Landroid/os/Bundle;
         1: .line 416
            aload 0 /* this */
            areturn
        end local 1 // android.os.Bundle bundle
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Landroid/content/SyncRequest$Builder;
            0    2     1  bundle  Landroid/os/Bundle;
    MethodParameters:
        Name  Flags
      bundle  

  public android.content.SyncRequest$Builder setNoRetry(boolean);
    descriptor: (Z)Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // boolean noRetry
         0: .line 429
            aload 0 /* this */
            iload 1 /* noRetry */
            putfield android.content.SyncRequest$Builder.mNoRetry:Z
         1: .line 430
            aload 0 /* this */
            areturn
        end local 1 // boolean noRetry
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Landroid/content/SyncRequest$Builder;
            0    2     1  noRetry  Z
    MethodParameters:
         Name  Flags
      noRetry  

  public android.content.SyncRequest$Builder setIgnoreSettings(boolean);
    descriptor: (Z)Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // boolean ignoreSettings
         0: .line 445
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mDisallowMetered:Z
            ifeq 2
            iload 1 /* ignoreSettings */
            ifeq 2
         1: .line 446
            new java.lang.IllegalArgumentException
            dup
            ldc "setIgnoreSettings(true) after having specified sync settings with this builder."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 449
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* ignoreSettings */
            putfield android.content.SyncRequest$Builder.mIgnoreSettings:Z
         3: .line 450
            aload 0 /* this */
            areturn
        end local 1 // boolean ignoreSettings
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Landroid/content/SyncRequest$Builder;
            0    4     1  ignoreSettings  Z
    MethodParameters:
                Name  Flags
      ignoreSettings  

  public android.content.SyncRequest$Builder setIgnoreBackoff(boolean);
    descriptor: (Z)Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // boolean ignoreBackoff
         0: .line 465
            aload 0 /* this */
            iload 1 /* ignoreBackoff */
            putfield android.content.SyncRequest$Builder.mIgnoreBackoff:Z
         1: .line 466
            aload 0 /* this */
            areturn
        end local 1 // boolean ignoreBackoff
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Landroid/content/SyncRequest$Builder;
            0    2     1  ignoreBackoff  Z
    MethodParameters:
               Name  Flags
      ignoreBackoff  

  public android.content.SyncRequest$Builder setManual(boolean);
    descriptor: (Z)Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // boolean isManual
         0: .line 478
            aload 0 /* this */
            iload 1 /* isManual */
            putfield android.content.SyncRequest$Builder.mIsManual:Z
         1: .line 479
            aload 0 /* this */
            areturn
        end local 1 // boolean isManual
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Landroid/content/SyncRequest$Builder;
            0    2     1  isManual  Z
    MethodParameters:
          Name  Flags
      isManual  

  public android.content.SyncRequest$Builder setExpedited(boolean);
    descriptor: (Z)Landroid/content/SyncRequest$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.content.SyncRequest$Builder this
        start local 1 // boolean expedited
         0: .line 491
            aload 0 /* this */
            iload 1 /* expedited */
            putfield android.content.SyncRequest$Builder.mExpedited:Z
         1: .line 492
            aload 0 /* this */
            areturn
        end local 1 // boolean expedited
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Landroid/content/SyncRequest$Builder;
            0    2     1  expedited  Z
    MethodParameters:
           Name  Flags
      expedited  

  public android.content.SyncRequest build();
    descriptor: ()Landroid/content/SyncRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.content.SyncRequest$Builder this
         0: .line 504
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mCustomExtras:Landroid/os/Bundle;
            invokestatic android.content.ContentResolver.validateSyncExtrasBundle:(Landroid/os/Bundle;)V
         1: .line 505
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mCustomExtras:Landroid/os/Bundle;
            ifnonnull 3
         2: .line 506
            aload 0 /* this */
            new android.os.Bundle
            dup
            invokespecial android.os.Bundle.<init>:()V
            putfield android.content.SyncRequest$Builder.mCustomExtras:Landroid/os/Bundle;
         3: .line 509
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new android.os.Bundle
            dup
            invokespecial android.os.Bundle.<init>:()V
            putfield android.content.SyncRequest$Builder.mSyncConfigExtras:Landroid/os/Bundle;
         4: .line 510
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mIgnoreBackoff:Z
            ifeq 6
         5: .line 511
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncConfigExtras:Landroid/os/Bundle;
            ldc "ignore_backoff"
            iconst_1
            invokevirtual android.os.Bundle.putBoolean:(Ljava/lang/String;Z)V
         6: .line 513
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mDisallowMetered:Z
            ifeq 8
         7: .line 514
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncConfigExtras:Landroid/os/Bundle;
            ldc "allow_metered"
            iconst_1
            invokevirtual android.os.Bundle.putBoolean:(Ljava/lang/String;Z)V
         8: .line 516
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mRequiresCharging:Z
            ifeq 10
         9: .line 517
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncConfigExtras:Landroid/os/Bundle;
            ldc "require_charging"
            iconst_1
            invokevirtual android.os.Bundle.putBoolean:(Ljava/lang/String;Z)V
        10: .line 519
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mIgnoreSettings:Z
            ifeq 12
        11: .line 520
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncConfigExtras:Landroid/os/Bundle;
            ldc "ignore_settings"
            iconst_1
            invokevirtual android.os.Bundle.putBoolean:(Ljava/lang/String;Z)V
        12: .line 522
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mNoRetry:Z
            ifeq 14
        13: .line 523
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncConfigExtras:Landroid/os/Bundle;
            ldc "do_not_retry"
            iconst_1
            invokevirtual android.os.Bundle.putBoolean:(Ljava/lang/String;Z)V
        14: .line 525
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mExpedited:Z
            ifeq 16
        15: .line 526
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncConfigExtras:Landroid/os/Bundle;
            ldc "expedited"
            iconst_1
            invokevirtual android.os.Bundle.putBoolean:(Ljava/lang/String;Z)V
        16: .line 528
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mIsManual:Z
            ifeq 19
        17: .line 529
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncConfigExtras:Landroid/os/Bundle;
            ldc "ignore_backoff"
            iconst_1
            invokevirtual android.os.Bundle.putBoolean:(Ljava/lang/String;Z)V
        18: .line 530
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncConfigExtras:Landroid/os/Bundle;
            ldc "ignore_settings"
            iconst_1
            invokevirtual android.os.Bundle.putBoolean:(Ljava/lang/String;Z)V
        19: .line 532
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncType:I
            iconst_1
            if_icmpne 23
        20: .line 534
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mCustomExtras:Landroid/os/Bundle;
            invokestatic android.content.ContentResolver.invalidPeriodicExtras:(Landroid/os/Bundle;)Z
            ifne 22
        21: .line 535
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncConfigExtras:Landroid/os/Bundle;
            invokestatic android.content.ContentResolver.invalidPeriodicExtras:(Landroid/os/Bundle;)Z
            ifeq 23
        22: .line 536
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Illegal extras were set"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        23: .line 540
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.SyncRequest$Builder.mSyncTarget:I
            ifne 25
        24: .line 541
            new java.lang.IllegalArgumentException
            dup
            ldc "Must specify an adapter with setSyncAdapter(Account, String"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        25: .line 544
      StackMap locals:
      StackMap stack:
            new android.content.SyncRequest
            dup
            aload 0 /* this */
            invokespecial android.content.SyncRequest.<init>:(Landroid/content/SyncRequest$Builder;)V
            areturn
        end local 0 // android.content.SyncRequest$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   26     0  this  Landroid/content/SyncRequest$Builder;
}
SourceFile: "SyncRequest.java"
NestHost: android.content.SyncRequest
InnerClasses:
  public Builder = android.content.SyncRequest$Builder of android.content.SyncRequest