public class org.eclipse.jgit.api.PullResult
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.api.PullResult
  super_class: java.lang.Object
{
  private final org.eclipse.jgit.transport.FetchResult fetchResult;
    descriptor: Lorg/eclipse/jgit/transport/FetchResult;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.jgit.api.MergeResult mergeResult;
    descriptor: Lorg/eclipse/jgit/api/MergeResult;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.jgit.api.RebaseResult rebaseResult;
    descriptor: Lorg/eclipse/jgit/api/RebaseResult;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String fetchedFrom;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(org.eclipse.jgit.transport.FetchResult, java.lang.String, org.eclipse.jgit.api.MergeResult);
    descriptor: (Lorg/eclipse/jgit/transport/FetchResult;Ljava/lang/String;Lorg/eclipse/jgit/api/MergeResult;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.eclipse.jgit.api.PullResult this
        start local 1 // org.eclipse.jgit.transport.FetchResult fetchResult
        start local 2 // java.lang.String fetchedFrom
        start local 3 // org.eclipse.jgit.api.MergeResult mergeResult
         0: .line 59
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            aload 1 /* fetchResult */
            putfield org.eclipse.jgit.api.PullResult.fetchResult:Lorg/eclipse/jgit/transport/FetchResult;
         2: .line 62
            aload 0 /* this */
            aload 2 /* fetchedFrom */
            putfield org.eclipse.jgit.api.PullResult.fetchedFrom:Ljava/lang/String;
         3: .line 63
            aload 0 /* this */
            aload 3 /* mergeResult */
            putfield org.eclipse.jgit.api.PullResult.mergeResult:Lorg/eclipse/jgit/api/MergeResult;
         4: .line 64
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jgit.api.PullResult.rebaseResult:Lorg/eclipse/jgit/api/RebaseResult;
         5: .line 65
            return
        end local 3 // org.eclipse.jgit.api.MergeResult mergeResult
        end local 2 // java.lang.String fetchedFrom
        end local 1 // org.eclipse.jgit.transport.FetchResult fetchResult
        end local 0 // org.eclipse.jgit.api.PullResult this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/eclipse/jgit/api/PullResult;
            0    6     1  fetchResult  Lorg/eclipse/jgit/transport/FetchResult;
            0    6     2  fetchedFrom  Ljava/lang/String;
            0    6     3  mergeResult  Lorg/eclipse/jgit/api/MergeResult;
    MethodParameters:
             Name  Flags
      fetchResult  
      fetchedFrom  
      mergeResult  

  void <init>(org.eclipse.jgit.transport.FetchResult, java.lang.String, org.eclipse.jgit.api.RebaseResult);
    descriptor: (Lorg/eclipse/jgit/transport/FetchResult;Ljava/lang/String;Lorg/eclipse/jgit/api/RebaseResult;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.eclipse.jgit.api.PullResult this
        start local 1 // org.eclipse.jgit.transport.FetchResult fetchResult
        start local 2 // java.lang.String fetchedFrom
        start local 3 // org.eclipse.jgit.api.RebaseResult rebaseResult
         0: .line 67
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 69
            aload 0 /* this */
            aload 1 /* fetchResult */
            putfield org.eclipse.jgit.api.PullResult.fetchResult:Lorg/eclipse/jgit/transport/FetchResult;
         2: .line 70
            aload 0 /* this */
            aload 2 /* fetchedFrom */
            putfield org.eclipse.jgit.api.PullResult.fetchedFrom:Ljava/lang/String;
         3: .line 71
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jgit.api.PullResult.mergeResult:Lorg/eclipse/jgit/api/MergeResult;
         4: .line 72
            aload 0 /* this */
            aload 3 /* rebaseResult */
            putfield org.eclipse.jgit.api.PullResult.rebaseResult:Lorg/eclipse/jgit/api/RebaseResult;
         5: .line 73
            return
        end local 3 // org.eclipse.jgit.api.RebaseResult rebaseResult
        end local 2 // java.lang.String fetchedFrom
        end local 1 // org.eclipse.jgit.transport.FetchResult fetchResult
        end local 0 // org.eclipse.jgit.api.PullResult this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lorg/eclipse/jgit/api/PullResult;
            0    6     1   fetchResult  Lorg/eclipse/jgit/transport/FetchResult;
            0    6     2   fetchedFrom  Ljava/lang/String;
            0    6     3  rebaseResult  Lorg/eclipse/jgit/api/RebaseResult;
    MethodParameters:
              Name  Flags
      fetchResult   
      fetchedFrom   
      rebaseResult  

  public org.eclipse.jgit.transport.FetchResult getFetchResult();
    descriptor: ()Lorg/eclipse/jgit/transport/FetchResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.api.PullResult this
         0: .line 81
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.fetchResult:Lorg/eclipse/jgit/transport/FetchResult;
            areturn
        end local 0 // org.eclipse.jgit.api.PullResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/api/PullResult;

  public org.eclipse.jgit.api.MergeResult getMergeResult();
    descriptor: ()Lorg/eclipse/jgit/api/MergeResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.api.PullResult this
         0: .line 90
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.mergeResult:Lorg/eclipse/jgit/api/MergeResult;
            areturn
        end local 0 // org.eclipse.jgit.api.PullResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/api/PullResult;

  public org.eclipse.jgit.api.RebaseResult getRebaseResult();
    descriptor: ()Lorg/eclipse/jgit/api/RebaseResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.api.PullResult this
         0: .line 99
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.rebaseResult:Lorg/eclipse/jgit/api/RebaseResult;
            areturn
        end local 0 // org.eclipse.jgit.api.PullResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/api/PullResult;

  public java.lang.String getFetchedFrom();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.api.PullResult this
         0: .line 109
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.fetchedFrom:Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jgit.api.PullResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/api/PullResult;

  public boolean isSuccessful();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.api.PullResult this
         0: .line 118
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.mergeResult:Lorg/eclipse/jgit/api/MergeResult;
            ifnull 2
         1: .line 119
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.mergeResult:Lorg/eclipse/jgit/api/MergeResult;
            invokevirtual org.eclipse.jgit.api.MergeResult.getMergeStatus:()Lorg/eclipse/jgit/api/MergeResult$MergeStatus;
            invokevirtual org.eclipse.jgit.api.MergeResult$MergeStatus.isSuccessful:()Z
            ireturn
         2: .line 120
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.rebaseResult:Lorg/eclipse/jgit/api/RebaseResult;
            ifnull 4
         3: .line 121
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.rebaseResult:Lorg/eclipse/jgit/api/RebaseResult;
            invokevirtual org.eclipse.jgit.api.RebaseResult.getStatus:()Lorg/eclipse/jgit/api/RebaseResult$Status;
            invokevirtual org.eclipse.jgit.api.RebaseResult$Status.isSuccessful:()Z
            ireturn
         4: .line 122
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 0 // org.eclipse.jgit.api.PullResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jgit/api/PullResult;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jgit.api.PullResult this
         0: .line 129
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 130
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.fetchResult:Lorg/eclipse/jgit/transport/FetchResult;
            ifnull 3
         2: .line 131
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.fetchResult:Lorg/eclipse/jgit/transport/FetchResult;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 4
         3: .line 133
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 1 /* sb */
            ldc "No fetch result"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 134
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         5: .line 135
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.mergeResult:Lorg/eclipse/jgit/api/MergeResult;
            ifnull 7
         6: .line 136
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.mergeResult:Lorg/eclipse/jgit/api/MergeResult;
            invokevirtual org.eclipse.jgit.api.MergeResult.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 10
         7: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.rebaseResult:Lorg/eclipse/jgit/api/RebaseResult;
            ifnull 9
         8: .line 138
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.PullResult.rebaseResult:Lorg/eclipse/jgit/api/RebaseResult;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 10
         9: .line 140
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            ldc "No update result"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 141
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // org.eclipse.jgit.api.PullResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/jgit/api/PullResult;
            1   11     1    sb  Ljava/lang/StringBuilder;
}
SourceFile: "PullResult.java"
InnerClasses:
  public abstract MergeStatus = org.eclipse.jgit.api.MergeResult$MergeStatus of org.eclipse.jgit.api.MergeResult
  public abstract Status = org.eclipse.jgit.api.RebaseResult$Status of org.eclipse.jgit.api.RebaseResult