public final class org.eclipse.jgit.revwalk.FooterLine
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.jgit.revwalk.FooterLine
  super_class: java.lang.Object
{
  private final byte[] buffer;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.nio.charset.Charset enc;
    descriptor: Ljava/nio/charset/Charset;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int keyStart;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int keyEnd;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int valStart;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int valEnd;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(byte[], java.nio.charset.Charset, int, int, int, int);
    descriptor: ([BLjava/nio/charset/Charset;IIII)V
    flags: (0x0000) 
    Code:
      stack=2, locals=7, args_size=7
        start local 0 // org.eclipse.jgit.revwalk.FooterLine this
        start local 1 // byte[] b
        start local 2 // java.nio.charset.Charset e
        start local 3 // int ks
        start local 4 // int ke
        start local 5 // int vs
        start local 6 // int ve
         0: .line 72
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 74
            aload 0 /* this */
            aload 1 /* b */
            putfield org.eclipse.jgit.revwalk.FooterLine.buffer:[B
         2: .line 75
            aload 0 /* this */
            aload 2 /* e */
            putfield org.eclipse.jgit.revwalk.FooterLine.enc:Ljava/nio/charset/Charset;
         3: .line 76
            aload 0 /* this */
            iload 3 /* ks */
            putfield org.eclipse.jgit.revwalk.FooterLine.keyStart:I
         4: .line 77
            aload 0 /* this */
            iload 4 /* ke */
            putfield org.eclipse.jgit.revwalk.FooterLine.keyEnd:I
         5: .line 78
            aload 0 /* this */
            iload 5 /* vs */
            putfield org.eclipse.jgit.revwalk.FooterLine.valStart:I
         6: .line 79
            aload 0 /* this */
            iload 6 /* ve */
            putfield org.eclipse.jgit.revwalk.FooterLine.valEnd:I
         7: .line 80
            return
        end local 6 // int ve
        end local 5 // int vs
        end local 4 // int ke
        end local 3 // int ks
        end local 2 // java.nio.charset.Charset e
        end local 1 // byte[] b
        end local 0 // org.eclipse.jgit.revwalk.FooterLine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/jgit/revwalk/FooterLine;
            0    8     1     b  [B
            0    8     2     e  Ljava/nio/charset/Charset;
            0    8     3    ks  I
            0    8     4    ke  I
            0    8     5    vs  I
            0    8     6    ve  I
    MethodParameters:
      Name  Flags
      b     final
      e     final
      ks    final
      ke    final
      vs    final
      ve    final

  public boolean matches(org.eclipse.jgit.revwalk.FooterKey);
    descriptor: (Lorg/eclipse/jgit/revwalk/FooterKey;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.jgit.revwalk.FooterLine this
        start local 1 // org.eclipse.jgit.revwalk.FooterKey key
         0: .line 90
            aload 1 /* key */
            getfield org.eclipse.jgit.revwalk.FooterKey.raw:[B
            astore 2 /* kRaw */
        start local 2 // byte[] kRaw
         1: .line 91
            aload 2 /* kRaw */
            arraylength
            istore 3 /* len */
        start local 3 // int len
         2: .line 92
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.keyStart:I
            istore 4 /* bPtr */
        start local 4 // int bPtr
         3: .line 93
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.keyEnd:I
            iload 4 /* bPtr */
            isub
            iload 3 /* len */
            if_icmpeq 5
         4: .line 94
            iconst_0
            ireturn
         5: .line 95
      StackMap locals: byte[] int int
      StackMap stack:
            iconst_0
            istore 5 /* kPtr */
        start local 5 // int kPtr
         6: goto 12
         7: .line 96
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.buffer:[B
            iload 4 /* bPtr */
            iinc 4 /* bPtr */ 1
            baload
            istore 6 /* b */
        start local 6 // byte b
         8: .line 97
            bipush 65
            iload 6 /* b */
            if_icmpgt 10
            iload 6 /* b */
            bipush 90
            if_icmpgt 10
         9: .line 98
            iload 6 /* b */
            bipush 32
            iadd
            i2b
            istore 6 /* b */
        10: .line 99
      StackMap locals: int
      StackMap stack:
            iload 6 /* b */
            aload 2 /* kRaw */
            iload 5 /* kPtr */
            iinc 5 /* kPtr */ 1
            baload
            if_icmpeq 12
        11: .line 100
            iconst_0
            ireturn
        end local 6 // byte b
        12: .line 95
      StackMap locals:
      StackMap stack:
            iload 5 /* kPtr */
            iload 3 /* len */
            if_icmplt 7
        end local 5 // int kPtr
        13: .line 102
            iconst_1
            ireturn
        end local 4 // int bPtr
        end local 3 // int len
        end local 2 // byte[] kRaw
        end local 1 // org.eclipse.jgit.revwalk.FooterKey key
        end local 0 // org.eclipse.jgit.revwalk.FooterLine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/eclipse/jgit/revwalk/FooterLine;
            0   14     1   key  Lorg/eclipse/jgit/revwalk/FooterKey;
            1   14     2  kRaw  [B
            2   14     3   len  I
            3   14     4  bPtr  I
            6   13     5  kPtr  I
            8   12     6     b  B
    MethodParameters:
      Name  Flags
      key   

  public java.lang.String getKey();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.revwalk.FooterLine this
         0: .line 113
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.enc:Ljava/nio/charset/Charset;
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.buffer:[B
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.keyStart:I
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.keyEnd:I
            invokestatic org.eclipse.jgit.util.RawParseUtils.decode:(Ljava/nio/charset/Charset;[BII)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jgit.revwalk.FooterLine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/revwalk/FooterLine;

  public java.lang.String getValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.revwalk.FooterLine this
         0: .line 126
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.enc:Ljava/nio/charset/Charset;
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.buffer:[B
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.valStart:I
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.valEnd:I
            invokestatic org.eclipse.jgit.util.RawParseUtils.decode:(Ljava/nio/charset/Charset;[BII)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jgit.revwalk.FooterLine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/revwalk/FooterLine;

  public java.lang.String getEmailAddress();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.eclipse.jgit.revwalk.FooterLine this
         0: .line 140
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.buffer:[B
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.valStart:I
            bipush 60
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BIC)I
            istore 1 /* lt */
        start local 1 // int lt
         1: .line 141
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.valEnd:I
            iload 1 /* lt */
            if_icmpgt 6
         2: .line 142
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.buffer:[B
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.valStart:I
            bipush 64
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BIC)I
            istore 2 /* at */
        start local 2 // int at
         3: .line 143
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.valStart:I
            iload 2 /* at */
            if_icmpge 5
            iload 2 /* at */
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.valEnd:I
            if_icmpge 5
         4: .line 144
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.revwalk.FooterLine.getValue:()Ljava/lang/String;
            areturn
         5: .line 145
      StackMap locals: int int
      StackMap stack:
            aconst_null
            areturn
        end local 2 // int at
         6: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.buffer:[B
            iload 1 /* lt */
            bipush 62
            invokestatic org.eclipse.jgit.util.RawParseUtils.nextLF:([BIC)I
            istore 2 /* gt */
        start local 2 // int gt
         7: .line 148
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.valEnd:I
            iload 2 /* gt */
            if_icmpge 9
         8: .line 149
            aconst_null
            areturn
         9: .line 150
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.enc:Ljava/nio/charset/Charset;
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.FooterLine.buffer:[B
            iload 1 /* lt */
            iload 2 /* gt */
            iconst_1
            isub
            invokestatic org.eclipse.jgit.util.RawParseUtils.decode:(Ljava/nio/charset/Charset;[BII)Ljava/lang/String;
            areturn
        end local 2 // int gt
        end local 1 // int lt
        end local 0 // org.eclipse.jgit.revwalk.FooterLine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/eclipse/jgit/revwalk/FooterLine;
            1   10     1    lt  I
            3    6     2    at  I
            7   10     2    gt  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.revwalk.FooterLine this
         0: .line 156
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.revwalk.FooterLine.getKey:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.revwalk.FooterLine.getValue:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jgit.revwalk.FooterLine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/revwalk/FooterLine;
}
SourceFile: "FooterLine.java"