final class com.conversantmedia.util.concurrent.Capacity
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.conversantmedia.util.concurrent.Capacity
  super_class: java.lang.Object
{
  public static final int MAX_POWER2;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1073741824

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.conversantmedia.util.concurrent.Capacity this
         0: .line 27
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.conversantmedia.util.concurrent.Capacity this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/conversantmedia/util/concurrent/Capacity;

  public static int getCapacity(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // int capacity
         0: .line 36
            iconst_1
            istore 1 /* c */
        start local 1 // int c
         1: .line 37
            iload 0 /* capacity */
            ldc 1073741824
            if_icmplt 5
         2: .line 38
            ldc 1073741824
            istore 1 /* c */
         3: .line 39
            goto 6
         4: .line 40
      StackMap locals: int
      StackMap stack:
            iload 1 /* c */
            iconst_1
            ishl
            istore 1 /* c */
      StackMap locals:
      StackMap stack:
         5: iload 1 /* c */
            iload 0 /* capacity */
            if_icmplt 4
         6: .line 43
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            invokestatic com.conversantmedia.util.concurrent.Capacity.isPowerOf2:(I)Z
            ifeq 8
         7: .line 44
            iload 1 /* c */
            ireturn
         8: .line 46
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            ldc "Capacity is not a power of 2."
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // int c
        end local 0 // int capacity
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0  capacity  I
            1    9     1         c  I
    MethodParameters:
          Name  Flags
      capacity  

  private static final boolean isPowerOf2(int);
    descriptor: (I)Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int p
         0: .line 56
            iload 0 /* p */
            iload 0 /* p */
            iconst_1
            isub
            iand
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int p
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     p  I
    MethodParameters:
      Name  Flags
      p     final
}
SourceFile: "Capacity.java"