final class org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer
  super_class: java.lang.Object
{
  int tail;
    descriptor: I
    flags: (0x0000) 

  int head;
    descriptor: I
    flags: (0x0000) 

  int size;
    descriptor: I
    flags: (0x0000) 

  int capacity;
    descriptor: I
    flags: (0x0000) 

  java.lang.Object[] elements;
    descriptor: [Ljava/lang/Object;
    flags: (0x0000) 

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer this
        start local 1 // int capacity
         0: .line 400
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 401
            aload 0 /* this */
            iload 1 /* capacity */
            putfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.capacity:I
         2: .line 402
            aload 0 /* this */
            iload 1 /* capacity */
            anewarray java.lang.Object
            putfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
         3: .line 403
            return
        end local 1 // int capacity
        end local 0 // org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/glassfish/grizzly/http2/hpack/HeaderTable$CircularBuffer<TE;>;
            0    4     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  void add();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer this
        start local 1 // java.lang.Object elem
         0: .line 406
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.capacity:I
            if_icmpne 2
         1: .line 407
            new java.lang.IllegalStateException
            dup
            ldc "No room for '%s': capacity=%s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* elem */
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.capacity:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 409
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.head:I
            aload 1 /* elem */
            aastore
         3: .line 410
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.head:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.capacity:I
            irem
            putfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.head:I
         4: .line 411
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            iconst_1
            iadd
            putfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
         5: .line 412
            return
        end local 1 // java.lang.Object elem
        end local 0 // org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/glassfish/grizzly/http2/hpack/HeaderTable$CircularBuffer<TE;>;
            0    6     1  elem  TE;
    Signature: (TE;)V
    MethodParameters:
      Name  Flags
      elem  

  E remove();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer this
         0: .line 416
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            ifne 2
         1: .line 417
            new java.util.NoSuchElementException
            dup
            ldc "Empty"
            invokespecial java.util.NoSuchElementException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 419
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
            aaload
            astore 1 /* elem */
        start local 1 // java.lang.Object elem
         3: .line 420
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
            aconst_null
            aastore
         4: .line 421
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.capacity:I
            irem
            putfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
         5: .line 422
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            iconst_1
            isub
            putfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
         6: .line 423
            aload 1 /* elem */
            areturn
        end local 1 // java.lang.Object elem
        end local 0 // org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/glassfish/grizzly/http2/hpack/HeaderTable$CircularBuffer<TE;>;
            3    7     1  elem  TE;
    Signature: ()TE;

  E get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer this
        start local 1 // int index
         0: .line 428
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            if_icmplt 2
         1: .line 429
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "0 <= index <= capacity: index=%s, capacity=%s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* index */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.capacity:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 431
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            iadd
            iload 1 /* index */
            isub
            iconst_1
            isub
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.capacity:I
            irem
            istore 2 /* idx */
        start local 2 // int idx
         3: .line 432
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
            iload 2 /* idx */
            aaload
            areturn
        end local 2 // int idx
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/glassfish/grizzly/http2/hpack/HeaderTable$CircularBuffer<TE;>;
            0    4     1  index  I
            3    4     2    idx  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public void resize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer this
        start local 1 // int newCapacity
         0: .line 436
            iload 1 /* newCapacity */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            if_icmpge 2
         1: .line 437
            new java.lang.IllegalStateException
            dup
            ldc "newCapacity >= size: newCapacity=%s, size=%s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* newCapacity */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 440
      StackMap locals:
      StackMap stack:
            iload 1 /* newCapacity */
            anewarray java.lang.Object
            astore 2 /* newElements */
        start local 2 // java.lang.Object[] newElements
         3: .line 442
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.head:I
            if_icmplt 4
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            ifne 6
         4: .line 443
      StackMap locals: java.lang.Object[]
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
            aload 2 /* newElements */
            iconst_0
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 444
            goto 8
         6: .line 445
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
            aload 2 /* newElements */
            iconst_0
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
            arraylength
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 446
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
            iconst_0
            aload 2 /* newElements */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
            arraylength
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
            isub
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.head:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 449
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newElements */
            putfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.elements:[Ljava/lang/Object;
         9: .line 450
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.tail:I
        10: .line 451
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.size:I
            putfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.head:I
        11: .line 452
            aload 0 /* this */
            iload 1 /* newCapacity */
            putfield org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer.capacity:I
        12: .line 453
            return
        end local 2 // java.lang.Object[] newElements
        end local 1 // int newCapacity
        end local 0 // org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lorg/glassfish/grizzly/http2/hpack/HeaderTable$CircularBuffer<TE;>;
            0   13     1  newCapacity  I
            3   13     2  newElements  [Ljava/lang/Object;
    MethodParameters:
             Name  Flags
      newCapacity  
}
Signature: <E:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "HeaderTable.java"
NestHost: org.glassfish.grizzly.http2.hpack.HeaderTable
InnerClasses:
  final CircularBuffer = org.glassfish.grizzly.http2.hpack.HeaderTable$CircularBuffer of org.glassfish.grizzly.http2.hpack.HeaderTable