class org.apache.tomcat.util.http.parser.Cookie$ByteBuffer
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.tomcat.util.http.parser.Cookie$ByteBuffer
  super_class: java.lang.Object
{
  private final byte[] bytes;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  public void <init>(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
        start local 1 // byte[] bytes
        start local 2 // int offset
        start local 3 // int len
         0: .line 641
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 639
            aload 0 /* this */
            iconst_0
            putfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
         2: .line 642
            aload 0 /* this */
            aload 1 /* bytes */
            putfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.bytes:[B
         3: .line 643
            aload 0 /* this */
            iload 2 /* offset */
            putfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
         4: .line 644
            aload 0 /* this */
            iload 2 /* offset */
            iload 3 /* len */
            iadd
            putfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.limit:I
         5: .line 645
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] bytes
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;
            0    6     1   bytes  [B
            0    6     2  offset  I
            0    6     3     len  I
    MethodParameters:
        Name  Flags
      bytes   
      offset  
      len     

  public int position();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
         0: .line 648
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
            ireturn
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;

  public void position(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
        start local 1 // int position
         0: .line 652
            aload 0 /* this */
            iload 1 /* position */
            putfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
         1: .line 653
            return
        end local 1 // int position
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;
            0    2     1  position  I
    MethodParameters:
          Name  Flags
      position  

  public int limit();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
         0: .line 656
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.limit:I
            ireturn
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;

  public int remaining();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
         0: .line 660
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.limit:I
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
            isub
            ireturn
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;

  public boolean hasRemaining();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
         0: .line 664
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.limit:I
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;

  public byte get();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
         0: .line 668
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
            baload
            ireturn
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;

  public byte peek();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
         0: .line 672
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.bytes:[B
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
            baload
            ireturn
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;

  public void rewind();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
         0: .line 676
            aload 0 /* this */
            dup
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
            iconst_1
            isub
            putfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
         1: .line 677
            return
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;

  public byte[] array();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
         0: .line 680
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.bytes:[B
            areturn
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;

  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.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
         0: .line 686
            new java.lang.StringBuilder
            dup
            ldc "position ["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.position:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "], limit ["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.tomcat.util.http.parser.Cookie$ByteBuffer.limit:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.tomcat.util.http.parser.Cookie$ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tomcat/util/http/parser/Cookie$ByteBuffer;
}
SourceFile: "Cookie.java"
NestHost: org.apache.tomcat.util.http.parser.Cookie
InnerClasses:
  private ByteBuffer = org.apache.tomcat.util.http.parser.Cookie$ByteBuffer of org.apache.tomcat.util.http.parser.Cookie