public class org.apache.lucene.util.IntsRefBuilder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.util.IntsRefBuilder
  super_class: java.lang.Object
{
  private final org.apache.lucene.util.IntsRef ref;
    descriptor: Lorg/apache/lucene/util/IntsRef;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 24
            ldc Lorg/apache/lucene/util/IntsRefBuilder;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.lucene.util.IntsRefBuilder.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 30
            aload 0 /* this */
            new org.apache.lucene.util.IntsRef
            dup
            invokespecial org.apache.lucene.util.IntsRef.<init>:()V
            putfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
         2: .line 31
            return
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/util/IntsRefBuilder;

  public int[] ints();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
         0: .line 35
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            getfield org.apache.lucene.util.IntsRef.ints:[I
            areturn
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/IntsRefBuilder;

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
         0: .line 40
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            getfield org.apache.lucene.util.IntsRef.length:I
            ireturn
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/IntsRefBuilder;

  public void setLength(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
        start local 1 // int length
         0: .line 45
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            iload 1 /* length */
            putfield org.apache.lucene.util.IntsRef.length:I
         1: .line 46
            return
        end local 1 // int length
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/lucene/util/IntsRefBuilder;
            0    2     1  length  I
    MethodParameters:
        Name  Flags
      length  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
         0: .line 50
            aload 0 /* this */
            iconst_0
            invokevirtual org.apache.lucene.util.IntsRefBuilder.setLength:(I)V
         1: .line 51
            return
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/util/IntsRefBuilder;

  public int intAt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
        start local 1 // int offset
         0: .line 55
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            getfield org.apache.lucene.util.IntsRef.ints:[I
            iload 1 /* offset */
            iaload
            ireturn
        end local 1 // int offset
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/lucene/util/IntsRefBuilder;
            0    1     1  offset  I
    MethodParameters:
        Name  Flags
      offset  

  public void setIntAt(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
        start local 1 // int offset
        start local 2 // int b
         0: .line 60
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            getfield org.apache.lucene.util.IntsRef.ints:[I
            iload 1 /* offset */
            iload 2 /* b */
            iastore
         1: .line 61
            return
        end local 2 // int b
        end local 1 // int offset
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/lucene/util/IntsRefBuilder;
            0    2     1  offset  I
            0    2     2       b  I
    MethodParameters:
        Name  Flags
      offset  
      b       

  public void append(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
        start local 1 // int i
         0: .line 65
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            getfield org.apache.lucene.util.IntsRef.length:I
            iconst_1
            iadd
            invokevirtual org.apache.lucene.util.IntsRefBuilder.grow:(I)V
         1: .line 66
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            getfield org.apache.lucene.util.IntsRef.ints:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            dup
            getfield org.apache.lucene.util.IntsRef.length:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.util.IntsRef.length:I
            iload 1 /* i */
            iastore
         2: .line 67
            return
        end local 1 // int i
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/util/IntsRefBuilder;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public void grow(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
        start local 1 // int newLength
         0: .line 75
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            getfield org.apache.lucene.util.IntsRef.ints:[I
            iload 1 /* newLength */
            invokestatic org.apache.lucene.util.ArrayUtil.grow:([II)[I
            putfield org.apache.lucene.util.IntsRef.ints:[I
         1: .line 76
            return
        end local 1 // int newLength
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/lucene/util/IntsRefBuilder;
            0    2     1  newLength  I
    MethodParameters:
           Name  Flags
      newLength  

  public void copyInts(int[], int, int);
    descriptor: ([III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
        start local 1 // int[] otherInts
        start local 2 // int otherOffset
        start local 3 // int otherLength
         0: .line 82
            aload 0 /* this */
            iload 3 /* otherLength */
            invokevirtual org.apache.lucene.util.IntsRefBuilder.grow:(I)V
         1: .line 83
            aload 1 /* otherInts */
            iload 2 /* otherOffset */
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            getfield org.apache.lucene.util.IntsRef.ints:[I
            iconst_0
            iload 3 /* otherLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 84
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            iload 3 /* otherLength */
            putfield org.apache.lucene.util.IntsRef.length:I
         3: .line 85
            return
        end local 3 // int otherLength
        end local 2 // int otherOffset
        end local 1 // int[] otherInts
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/apache/lucene/util/IntsRefBuilder;
            0    4     1    otherInts  [I
            0    4     2  otherOffset  I
            0    4     3  otherLength  I
    MethodParameters:
             Name  Flags
      otherInts    
      otherOffset  
      otherLength  

  public void copyInts(org.apache.lucene.util.IntsRef);
    descriptor: (Lorg/apache/lucene/util/IntsRef;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
        start local 1 // org.apache.lucene.util.IntsRef ints
         0: .line 91
            aload 0 /* this */
            aload 1 /* ints */
            getfield org.apache.lucene.util.IntsRef.ints:[I
            aload 1 /* ints */
            getfield org.apache.lucene.util.IntsRef.offset:I
            aload 1 /* ints */
            getfield org.apache.lucene.util.IntsRef.length:I
            invokevirtual org.apache.lucene.util.IntsRefBuilder.copyInts:([III)V
         1: .line 92
            return
        end local 1 // org.apache.lucene.util.IntsRef ints
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/util/IntsRefBuilder;
            0    2     1  ints  Lorg/apache/lucene/util/IntsRef;
    MethodParameters:
      Name  Flags
      ints  

  public void copyUTF8Bytes(org.apache.lucene.util.BytesRef);
    descriptor: (Lorg/apache/lucene/util/BytesRef;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
        start local 1 // org.apache.lucene.util.BytesRef bytes
         0: .line 99
            aload 0 /* this */
            aload 1 /* bytes */
            getfield org.apache.lucene.util.BytesRef.length:I
            invokevirtual org.apache.lucene.util.IntsRefBuilder.grow:(I)V
         1: .line 100
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            aload 1 /* bytes */
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            getfield org.apache.lucene.util.IntsRef.ints:[I
            invokestatic org.apache.lucene.util.UnicodeUtil.UTF8toUTF32:(Lorg/apache/lucene/util/BytesRef;[I)I
            putfield org.apache.lucene.util.IntsRef.length:I
         2: .line 101
            return
        end local 1 // org.apache.lucene.util.BytesRef bytes
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/lucene/util/IntsRefBuilder;
            0    3     1  bytes  Lorg/apache/lucene/util/BytesRef;
    MethodParameters:
       Name  Flags
      bytes  

  public org.apache.lucene.util.IntsRef get();
    descriptor: ()Lorg/apache/lucene/util/IntsRef;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
         0: .line 109
            getstatic org.apache.lucene.util.IntsRefBuilder.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            getfield org.apache.lucene.util.IntsRef.offset:I
            ifeq 1
            new java.lang.AssertionError
            dup
            ldc "Modifying the offset of the returned ref is illegal"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.IntsRefBuilder.ref:Lorg/apache/lucene/util/IntsRef;
            areturn
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/util/IntsRefBuilder;

  public org.apache.lucene.util.IntsRef toIntsRef();
    descriptor: ()Lorg/apache/lucene/util/IntsRef;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
         0: .line 115
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.IntsRefBuilder.get:()Lorg/apache/lucene/util/IntsRef;
            invokestatic org.apache.lucene.util.IntsRef.deepCopyOf:(Lorg/apache/lucene/util/IntsRef;)Lorg/apache/lucene/util/IntsRef;
            areturn
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/IntsRefBuilder;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
        start local 1 // java.lang.Object obj
         0: .line 120
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/IntsRefBuilder;
            0    1     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.IntsRefBuilder this
         0: .line 125
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.apache.lucene.util.IntsRefBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/IntsRefBuilder;
}
SourceFile: "IntsRefBuilder.java"