public class org.objectweb.asm.TypeReference
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.objectweb.asm.TypeReference
  super_class: java.lang.Object
{
  public static final int CLASS_TYPE_PARAMETER;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int METHOD_TYPE_PARAMETER;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int CLASS_EXTENDS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  public static final int CLASS_TYPE_PARAMETER_BOUND;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 17

  public static final int METHOD_TYPE_PARAMETER_BOUND;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 18

  public static final int FIELD;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 19

  public static final int METHOD_RETURN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 20

  public static final int METHOD_RECEIVER;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 21

  public static final int METHOD_FORMAL_PARAMETER;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 22

  public static final int THROWS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 23

  public static final int LOCAL_VARIABLE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 64

  public static final int RESOURCE_VARIABLE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 65

  public static final int EXCEPTION_PARAMETER;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 66

  public static final int INSTANCEOF;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 67

  public static final int NEW;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 68

  public static final int CONSTRUCTOR_REFERENCE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 69

  public static final int METHOD_REFERENCE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 70

  public static final int CAST;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 71

  public static final int CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 72

  public static final int METHOD_INVOCATION_TYPE_ARGUMENT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 73

  public static final int CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 74

  public static final int METHOD_REFERENCE_TYPE_ARGUMENT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 75

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

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.TypeReference this
        start local 1 // int typeRef
         0: .line 189
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 190
            aload 0 /* this */
            iload 1 /* typeRef */
            putfield org.objectweb.asm.TypeReference.value:I
         2: .line 191
            return
        end local 1 // int typeRef
        end local 0 // org.objectweb.asm.TypeReference this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/objectweb/asm/TypeReference;
            0    3     1  typeRef  I
    MethodParameters:
         Name  Flags
      typeRef  

  public static org.objectweb.asm.TypeReference newTypeReference(int);
    descriptor: (I)Lorg/objectweb/asm/TypeReference;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // int sort
         0: .line 207
            new org.objectweb.asm.TypeReference
            dup
            iload 0 /* sort */
            bipush 24
            ishl
            invokespecial org.objectweb.asm.TypeReference.<init>:(I)V
            areturn
        end local 0 // int sort
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  sort  I
    MethodParameters:
      Name  Flags
      sort  

  public static org.objectweb.asm.TypeReference newTypeParameterReference(int, int);
    descriptor: (II)Lorg/objectweb/asm/TypeReference;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // int sort
        start local 1 // int paramIndex
         0: .line 222
            new org.objectweb.asm.TypeReference
            dup
            iload 0 /* sort */
            bipush 24
            ishl
            iload 1 /* paramIndex */
            bipush 16
            ishl
            ior
            invokespecial org.objectweb.asm.TypeReference.<init>:(I)V
            areturn
        end local 1 // int paramIndex
        end local 0 // int sort
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        sort  I
            0    1     1  paramIndex  I
    MethodParameters:
            Name  Flags
      sort        
      paramIndex  

  public static org.objectweb.asm.TypeReference newTypeParameterBoundReference(int, int, int);
    descriptor: (III)Lorg/objectweb/asm/TypeReference;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // int sort
        start local 1 // int paramIndex
        start local 2 // int boundIndex
         0: .line 241
            new org.objectweb.asm.TypeReference
            dup
            iload 0 /* sort */
            bipush 24
            ishl
            iload 1 /* paramIndex */
            bipush 16
            ishl
            ior
         1: .line 242
            iload 2 /* boundIndex */
            bipush 8
            ishl
            ior
         2: .line 241
            invokespecial org.objectweb.asm.TypeReference.<init>:(I)V
            areturn
        end local 2 // int boundIndex
        end local 1 // int paramIndex
        end local 0 // int sort
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        sort  I
            0    3     1  paramIndex  I
            0    3     2  boundIndex  I
    MethodParameters:
            Name  Flags
      sort        
      paramIndex  
      boundIndex  

  public static org.objectweb.asm.TypeReference newSuperTypeReference(int);
    descriptor: (I)Lorg/objectweb/asm/TypeReference;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // int itfIndex
         0: .line 255
            iload 0 /* itfIndex */
            ldc 65535
            iand
            istore 0 /* itfIndex */
         1: .line 256
            new org.objectweb.asm.TypeReference
            dup
            ldc 268435456
            iload 0 /* itfIndex */
            bipush 8
            ishl
            ior
            invokespecial org.objectweb.asm.TypeReference.<init>:(I)V
            areturn
        end local 0 // int itfIndex
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  itfIndex  I
    MethodParameters:
          Name  Flags
      itfIndex  

  public static org.objectweb.asm.TypeReference newFormalParameterReference(int);
    descriptor: (I)Lorg/objectweb/asm/TypeReference;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // int paramIndex
         0: .line 268
            new org.objectweb.asm.TypeReference
            dup
            ldc 369098752
         1: .line 269
            iload 0 /* paramIndex */
            bipush 16
            ishl
            ior
         2: .line 268
            invokespecial org.objectweb.asm.TypeReference.<init>:(I)V
            areturn
        end local 0 // int paramIndex
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0  paramIndex  I
    MethodParameters:
            Name  Flags
      paramIndex  

  public static org.objectweb.asm.TypeReference newExceptionReference(int);
    descriptor: (I)Lorg/objectweb/asm/TypeReference;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // int exceptionIndex
         0: .line 282
            new org.objectweb.asm.TypeReference
            dup
            ldc 385875968
            iload 0 /* exceptionIndex */
            bipush 8
            ishl
            ior
            invokespecial org.objectweb.asm.TypeReference.<init>:(I)V
            areturn
        end local 0 // int exceptionIndex
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0  exceptionIndex  I
    MethodParameters:
                Name  Flags
      exceptionIndex  

  public static org.objectweb.asm.TypeReference newTryCatchReference(int);
    descriptor: (I)Lorg/objectweb/asm/TypeReference;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // int tryCatchBlockIndex
         0: .line 296
            new org.objectweb.asm.TypeReference
            dup
            ldc 1107296256
         1: .line 297
            iload 0 /* tryCatchBlockIndex */
            bipush 8
            ishl
            ior
         2: .line 296
            invokespecial org.objectweb.asm.TypeReference.<init>:(I)V
            areturn
        end local 0 // int tryCatchBlockIndex
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    3     0  tryCatchBlockIndex  I
    MethodParameters:
                    Name  Flags
      tryCatchBlockIndex  

  public static org.objectweb.asm.TypeReference newTypeArgumentReference(int, int);
    descriptor: (II)Lorg/objectweb/asm/TypeReference;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // int sort
        start local 1 // int argIndex
         0: .line 320
            new org.objectweb.asm.TypeReference
            dup
            iload 0 /* sort */
            bipush 24
            ishl
            iload 1 /* argIndex */
            ior
            invokespecial org.objectweb.asm.TypeReference.<init>:(I)V
            areturn
        end local 1 // int argIndex
        end local 0 // int sort
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      sort  I
            0    1     1  argIndex  I
    MethodParameters:
          Name  Flags
      sort      
      argIndex  

  public int getSort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.TypeReference this
         0: .line 350
            aload 0 /* this */
            getfield org.objectweb.asm.TypeReference.value:I
            bipush 24
            iushr
            ireturn
        end local 0 // org.objectweb.asm.TypeReference this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/TypeReference;

  public int getTypeParameterIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.TypeReference this
         0: .line 364
            aload 0 /* this */
            getfield org.objectweb.asm.TypeReference.value:I
            ldc 16711680
            iand
            bipush 16
            ishr
            ireturn
        end local 0 // org.objectweb.asm.TypeReference this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/TypeReference;

  public int getTypeParameterBoundIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.TypeReference this
         0: .line 377
            aload 0 /* this */
            getfield org.objectweb.asm.TypeReference.value:I
            ldc 65280
            iand
            bipush 8
            ishr
            ireturn
        end local 0 // org.objectweb.asm.TypeReference this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/TypeReference;

  public int getSuperTypeIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.TypeReference this
         0: .line 390
            aload 0 /* this */
            getfield org.objectweb.asm.TypeReference.value:I
            ldc 16776960
            iand
            bipush 8
            ishr
            i2s
            ireturn
        end local 0 // org.objectweb.asm.TypeReference this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/TypeReference;

  public int getFormalParameterIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.TypeReference this
         0: .line 401
            aload 0 /* this */
            getfield org.objectweb.asm.TypeReference.value:I
            ldc 16711680
            iand
            bipush 16
            ishr
            ireturn
        end local 0 // org.objectweb.asm.TypeReference this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/TypeReference;

  public int getExceptionIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.TypeReference this
         0: .line 412
            aload 0 /* this */
            getfield org.objectweb.asm.TypeReference.value:I
            ldc 16776960
            iand
            bipush 8
            ishr
            ireturn
        end local 0 // org.objectweb.asm.TypeReference this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/TypeReference;

  public int getTryCatchBlockIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.TypeReference this
         0: .line 424
            aload 0 /* this */
            getfield org.objectweb.asm.TypeReference.value:I
            ldc 16776960
            iand
            bipush 8
            ishr
            ireturn
        end local 0 // org.objectweb.asm.TypeReference this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/TypeReference;

  public int getTypeArgumentIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.TypeReference this
         0: .line 440
            aload 0 /* this */
            getfield org.objectweb.asm.TypeReference.value:I
            sipush 255
            iand
            ireturn
        end local 0 // org.objectweb.asm.TypeReference this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/TypeReference;

  public int getValue();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.objectweb.asm.TypeReference this
         0: .line 450
            aload 0 /* this */
            getfield org.objectweb.asm.TypeReference.value:I
            ireturn
        end local 0 // org.objectweb.asm.TypeReference this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/TypeReference;
}
SourceFile: "TypeReference.java"