public final class net.bytebuddy.implementation.bytecode.StackSize extends java.lang.Enum<net.bytebuddy.implementation.bytecode.StackSize>
  minor version: 0
  major version: 59
  flags: flags: (0x4031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER, ACC_ANNOTATION
  this_class: net.bytebuddy.implementation.bytecode.StackSize
  super_class: java.lang.Enum
{
  public static final net.bytebuddy.implementation.bytecode.StackSize ZERO;
    descriptor: Lnet/bytebuddy/implementation/bytecode/StackSize;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

  public static final net.bytebuddy.implementation.bytecode.StackSize SINGLE;
    descriptor: Lnet/bytebuddy/implementation/bytecode/StackSize;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

  public static final net.bytebuddy.implementation.bytecode.StackSize DOUBLE;
    descriptor: Lnet/bytebuddy/implementation/bytecode/StackSize;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

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

  private static volatile int[] $SWITCH_TABLE$net$bytebuddy$implementation$bytecode$StackSize;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  private static final net.bytebuddy.implementation.bytecode.StackSize[] ENUM$VALUES;
    descriptor: [Lnet/bytebuddy/implementation/bytecode/StackSize;
    flags: (0x101a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=0, args_size=0
         0: .line 28
            new net.bytebuddy.implementation.bytecode.StackSize
            dup
            ldc "ZERO"
            iconst_0
         1: .line 31
            iconst_0
            invokespecial net.bytebuddy.implementation.bytecode.StackSize.<init>:(Ljava/lang/String;II)V
            putstatic net.bytebuddy.implementation.bytecode.StackSize.ZERO:Lnet/bytebuddy/implementation/bytecode/StackSize;
         2: .line 33
            new net.bytebuddy.implementation.bytecode.StackSize
            dup
            ldc "SINGLE"
            iconst_1
         3: .line 36
            iconst_1
            invokespecial net.bytebuddy.implementation.bytecode.StackSize.<init>:(Ljava/lang/String;II)V
            putstatic net.bytebuddy.implementation.bytecode.StackSize.SINGLE:Lnet/bytebuddy/implementation/bytecode/StackSize;
         4: .line 38
            new net.bytebuddy.implementation.bytecode.StackSize
            dup
            ldc "DOUBLE"
            iconst_2
         5: .line 41
            iconst_2
            invokespecial net.bytebuddy.implementation.bytecode.StackSize.<init>:(Ljava/lang/String;II)V
            putstatic net.bytebuddy.implementation.bytecode.StackSize.DOUBLE:Lnet/bytebuddy/implementation/bytecode/StackSize;
         6: .line 26
            iconst_3
            anewarray net.bytebuddy.implementation.bytecode.StackSize
            dup
            iconst_0
            getstatic net.bytebuddy.implementation.bytecode.StackSize.ZERO:Lnet/bytebuddy/implementation/bytecode/StackSize;
            aastore
            dup
            iconst_1
            getstatic net.bytebuddy.implementation.bytecode.StackSize.SINGLE:Lnet/bytebuddy/implementation/bytecode/StackSize;
            aastore
            dup
            iconst_2
            getstatic net.bytebuddy.implementation.bytecode.StackSize.DOUBLE:Lnet/bytebuddy/implementation/bytecode/StackSize;
            aastore
            putstatic net.bytebuddy.implementation.bytecode.StackSize.ENUM$VALUES:[Lnet/bytebuddy/implementation/bytecode/StackSize;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // net.bytebuddy.implementation.bytecode.StackSize this
        start local 3 // int size
         0: .line 53
            aload 0 /* this */
            aload 1
            iload 2
            invokespecial java.lang.Enum.<init>:(Ljava/lang/String;I)V
         1: .line 54
            aload 0 /* this */
            iload 3 /* size */
            putfield net.bytebuddy.implementation.bytecode.StackSize.size:I
         2: .line 55
            return
        end local 3 // int size
        end local 0 // net.bytebuddy.implementation.bytecode.StackSize this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lnet/bytebuddy/implementation/bytecode/StackSize;
            0    3     3  size  I
    MethodParameters:
               Name  Flags
      $enum$name     
      $enum$ordinal  
      size           

  public static net.bytebuddy.implementation.bytecode.StackSize of(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)Lnet/bytebuddy/implementation/bytecode/StackSize;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Class type
         0: .line 64
            aload 0 /* type */
            getstatic java.lang.Void.TYPE:Ljava/lang/Class;
            if_acmpne 2
         1: .line 65
            getstatic net.bytebuddy.implementation.bytecode.StackSize.ZERO:Lnet/bytebuddy/implementation/bytecode/StackSize;
            areturn
         2: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* type */
            getstatic java.lang.Double.TYPE:Ljava/lang/Class;
            if_acmpeq 3
            aload 0 /* type */
            getstatic java.lang.Long.TYPE:Ljava/lang/Class;
            if_acmpne 4
         3: .line 67
      StackMap locals:
      StackMap stack:
            getstatic net.bytebuddy.implementation.bytecode.StackSize.DOUBLE:Lnet/bytebuddy/implementation/bytecode/StackSize;
            areturn
         4: .line 69
      StackMap locals:
      StackMap stack:
            getstatic net.bytebuddy.implementation.bytecode.StackSize.SINGLE:Lnet/bytebuddy/implementation/bytecode/StackSize;
            areturn
        end local 0 // java.lang.Class type
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  type  Ljava/lang/Class<*>;
    Signature: (Ljava/lang/Class<*>;)Lnet/bytebuddy/implementation/bytecode/StackSize;
    MethodParameters:
      Name  Flags
      type  

  public static net.bytebuddy.implementation.bytecode.StackSize of(int);
    descriptor: (I)Lnet/bytebuddy/implementation/bytecode/StackSize;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // int size
         0: .line 80
            iload 0 /* size */
            tableswitch { // 0 - 2
                    0: 1
                    1: 2
                    2: 3
              default: 4
          }
         1: .line 82
      StackMap locals:
      StackMap stack:
            getstatic net.bytebuddy.implementation.bytecode.StackSize.ZERO:Lnet/bytebuddy/implementation/bytecode/StackSize;
            areturn
         2: .line 84
      StackMap locals:
      StackMap stack:
            getstatic net.bytebuddy.implementation.bytecode.StackSize.SINGLE:Lnet/bytebuddy/implementation/bytecode/StackSize;
            areturn
         3: .line 86
      StackMap locals:
      StackMap stack:
            getstatic net.bytebuddy.implementation.bytecode.StackSize.DOUBLE:Lnet/bytebuddy/implementation/bytecode/StackSize;
            areturn
         4: .line 88
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unexpected stack size value: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 0 /* size */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // int size
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  size  I
    MethodParameters:
      Name  Flags
      size  

  public static int of(net.bytebuddy.description.type.TypeDefinition[]);
    descriptor: ([Lnet/bytebuddy/description/type/TypeDefinition;)I
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // net.bytebuddy.description.type.TypeDefinition[] typeDefinition
         0: .line 99
            aload 0 /* typeDefinition */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic net.bytebuddy.implementation.bytecode.StackSize.of:(Ljava/util/Collection;)I
            ireturn
        end local 0 // net.bytebuddy.description.type.TypeDefinition[] typeDefinition
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0  typeDefinition  [Lnet/bytebuddy/description/type/TypeDefinition;
    MethodParameters:
                Name  Flags
      typeDefinition  

  public static int of(java.util.Collection<? extends net.bytebuddy.description.type.TypeDefinition>);
    descriptor: (Ljava/util/Collection;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // java.util.Collection typeDefinitions
         0: .line 109
            iconst_0
            istore 1 /* size */
        start local 1 // int size
         1: .line 110
            aload 0 /* typeDefinitions */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: java.util.Collection int top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast net.bytebuddy.description.type.TypeDefinition
            astore 2 /* typeDefinition */
        start local 2 // net.bytebuddy.description.type.TypeDefinition typeDefinition
         3: .line 111
            iload 1 /* size */
            aload 2 /* typeDefinition */
            invokeinterface net.bytebuddy.description.type.TypeDefinition.getStackSize:()Lnet/bytebuddy/implementation/bytecode/StackSize;
            invokevirtual net.bytebuddy.implementation.bytecode.StackSize.getSize:()I
            iadd
            istore 1 /* size */
        end local 2 // net.bytebuddy.description.type.TypeDefinition typeDefinition
         4: .line 110
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 113
            iload 1 /* size */
            ireturn
        end local 1 // int size
        end local 0 // java.util.Collection typeDefinitions
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0  typeDefinitions  Ljava/util/Collection<+Lnet/bytebuddy/description/type/TypeDefinition;>;
            1    6     1             size  I
            3    4     2   typeDefinition  Lnet/bytebuddy/description/type/TypeDefinition;
    Signature: (Ljava/util/Collection<+Lnet/bytebuddy/description/type/TypeDefinition;>;)I
    MethodParameters:
                 Name  Flags
      typeDefinitions  

  public int getSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // net.bytebuddy.implementation.bytecode.StackSize this
         0: .line 122
            aload 0 /* this */
            getfield net.bytebuddy.implementation.bytecode.StackSize.size:I
            ireturn
        end local 0 // net.bytebuddy.implementation.bytecode.StackSize this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/bytebuddy/implementation/bytecode/StackSize;

  public net.bytebuddy.implementation.bytecode.StackManipulation$Size toIncreasingSize();
    descriptor: ()Lnet/bytebuddy/implementation/bytecode/StackManipulation$Size;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // net.bytebuddy.implementation.bytecode.StackSize this
         0: .line 133
            new net.bytebuddy.implementation.bytecode.StackManipulation$Size
            dup
            aload 0 /* this */
            invokevirtual net.bytebuddy.implementation.bytecode.StackSize.getSize:()I
            aload 0 /* this */
            invokevirtual net.bytebuddy.implementation.bytecode.StackSize.getSize:()I
            invokespecial net.bytebuddy.implementation.bytecode.StackManipulation$Size.<init>:(II)V
            areturn
        end local 0 // net.bytebuddy.implementation.bytecode.StackSize this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/bytebuddy/implementation/bytecode/StackSize;

  public net.bytebuddy.implementation.bytecode.StackManipulation$Size toDecreasingSize();
    descriptor: ()Lnet/bytebuddy/implementation/bytecode/StackManipulation$Size;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // net.bytebuddy.implementation.bytecode.StackSize this
         0: .line 144
            new net.bytebuddy.implementation.bytecode.StackManipulation$Size
            dup
            iconst_m1
            aload 0 /* this */
            invokevirtual net.bytebuddy.implementation.bytecode.StackSize.getSize:()I
            imul
            iconst_0
            invokespecial net.bytebuddy.implementation.bytecode.StackManipulation$Size.<init>:(II)V
            areturn
        end local 0 // net.bytebuddy.implementation.bytecode.StackSize this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/bytebuddy/implementation/bytecode/StackSize;

  public net.bytebuddy.implementation.bytecode.StackSize maximum(net.bytebuddy.implementation.bytecode.StackSize);
    descriptor: (Lnet/bytebuddy/implementation/bytecode/StackSize;)Lnet/bytebuddy/implementation/bytecode/StackSize;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // net.bytebuddy.implementation.bytecode.StackSize this
        start local 1 // net.bytebuddy.implementation.bytecode.StackSize stackSize
         0: .line 154
            invokestatic net.bytebuddy.implementation.bytecode.StackSize.$SWITCH_TABLE$net$bytebuddy$implementation$bytecode$StackSize:()[I
            aload 0 /* this */
            invokevirtual net.bytebuddy.implementation.bytecode.StackSize.ordinal:()I
            iaload
            tableswitch { // 1 - 3
                    1: 1
                    2: 2
                    3: 6
              default: 7
          }
         1: .line 156
      StackMap locals:
      StackMap stack:
            aload 1 /* stackSize */
            areturn
         2: .line 158
      StackMap locals:
      StackMap stack:
            invokestatic net.bytebuddy.implementation.bytecode.StackSize.$SWITCH_TABLE$net$bytebuddy$implementation$bytecode$StackSize:()[I
            aload 1 /* stackSize */
            invokevirtual net.bytebuddy.implementation.bytecode.StackSize.ordinal:()I
            iaload
            tableswitch { // 1 - 3
                    1: 4
                    2: 4
                    3: 3
              default: 5
          }
         3: .line 160
      StackMap locals:
      StackMap stack:
            aload 1 /* stackSize */
            areturn
         4: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
         5: .line 165
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         6: .line 168
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
         7: .line 170
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 1 // net.bytebuddy.implementation.bytecode.StackSize stackSize
        end local 0 // net.bytebuddy.implementation.bytecode.StackSize this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lnet/bytebuddy/implementation/bytecode/StackSize;
            0    8     1  stackSize  Lnet/bytebuddy/implementation/bytecode/StackSize;
    MethodParameters:
           Name  Flags
      stackSize  

  public static net.bytebuddy.implementation.bytecode.StackSize[] values();
    descriptor: ()[Lnet/bytebuddy/implementation/bytecode/StackSize;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=0
         0: .line 1
            getstatic net.bytebuddy.implementation.bytecode.StackSize.ENUM$VALUES:[Lnet/bytebuddy/implementation/bytecode/StackSize;
            dup
            astore 0
            iconst_0
            aload 0
            arraylength
            dup
            istore 1
            anewarray net.bytebuddy.implementation.bytecode.StackSize
            dup
            astore 2
            iconst_0
            iload 1
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
            aload 2
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static net.bytebuddy.implementation.bytecode.StackSize valueOf(java.lang.String);
    descriptor: (Ljava/lang/String;)Lnet/bytebuddy/implementation/bytecode/StackSize;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
         0: .line 1
            ldc Lnet/bytebuddy/implementation/bytecode/StackSize;
            aload 0
            invokestatic java.lang.Enum.valueOf:(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Enum;
            checkcast net.bytebuddy.implementation.bytecode.StackSize
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    MethodParameters:
      Name  Flags
      name  

  static int[] $SWITCH_TABLE$net$bytebuddy$implementation$bytecode$StackSize();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 26
            getstatic net.bytebuddy.implementation.bytecode.StackSize.$SWITCH_TABLE$net$bytebuddy$implementation$bytecode$StackSize:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic net.bytebuddy.implementation.bytecode.StackSize.values:()[Lnet/bytebuddy/implementation/bytecode/StackSize;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic net.bytebuddy.implementation.bytecode.StackSize.DOUBLE:Lnet/bytebuddy/implementation/bytecode/StackSize;
            invokevirtual net.bytebuddy.implementation.bytecode.StackSize.ordinal:()I
            iconst_3
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic net.bytebuddy.implementation.bytecode.StackSize.SINGLE:Lnet/bytebuddy/implementation/bytecode/StackSize;
            invokevirtual net.bytebuddy.implementation.bytecode.StackSize.ordinal:()I
            iconst_2
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic net.bytebuddy.implementation.bytecode.StackSize.ZERO:Lnet/bytebuddy/implementation/bytecode/StackSize;
            invokevirtual net.bytebuddy.implementation.bytecode.StackSize.ordinal:()I
            iconst_1
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            dup
            putstatic net.bytebuddy.implementation.bytecode.StackSize.$SWITCH_TABLE$net$bytebuddy$implementation$bytecode$StackSize:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
}
Signature: Ljava/lang/Enum<Lnet/bytebuddy/implementation/bytecode/StackSize;>;
SourceFile: "StackSize.java"
InnerClasses:
  public Size = net.bytebuddy.implementation.bytecode.StackManipulation$Size of net.bytebuddy.implementation.bytecode.StackManipulation