public class org.apache.lucene.store.FlushInfo
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.store.FlushInfo
  super_class: java.lang.Object
{
  public final int numDocs;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final long estimatedSegmentSize;
    descriptor: J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public void <init>(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.apache.lucene.store.FlushInfo this
        start local 1 // int numDocs
        start local 2 // long estimatedSegmentSize
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            iload 1 /* numDocs */
            putfield org.apache.lucene.store.FlushInfo.numDocs:I
         2: .line 42
            aload 0 /* this */
            lload 2 /* estimatedSegmentSize */
            putfield org.apache.lucene.store.FlushInfo.estimatedSegmentSize:J
         3: .line 43
            return
        end local 2 // long estimatedSegmentSize
        end local 1 // int numDocs
        end local 0 // org.apache.lucene.store.FlushInfo this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    4     0                  this  Lorg/apache/lucene/store/FlushInfo;
            0    4     1               numDocs  I
            0    4     2  estimatedSegmentSize  J
    MethodParameters:
                      Name  Flags
      numDocs               
      estimatedSegmentSize  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.apache.lucene.store.FlushInfo this
         0: .line 48
            iconst_1
            istore 1 /* result */
        start local 1 // int result
         1: .line 49
            bipush 31
            iload 1 /* result */
            imul
         2: .line 50
            aload 0 /* this */
            getfield org.apache.lucene.store.FlushInfo.estimatedSegmentSize:J
            aload 0 /* this */
            getfield org.apache.lucene.store.FlushInfo.estimatedSegmentSize:J
            bipush 32
            lushr
            lxor
            l2i
         3: .line 49
            iadd
            istore 1 /* result */
         4: .line 51
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.store.FlushInfo.numDocs:I
            iadd
            istore 1 /* result */
         5: .line 52
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.apache.lucene.store.FlushInfo this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/lucene/store/FlushInfo;
            1    6     1  result  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.lucene.store.FlushInfo this
        start local 1 // java.lang.Object obj
         0: .line 57
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 58
            iconst_1
            ireturn
         2: .line 59
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 4
         3: .line 60
            iconst_0
            ireturn
         4: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 6
         5: .line 62
            iconst_0
            ireturn
         6: .line 63
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.apache.lucene.store.FlushInfo
            astore 2 /* other */
        start local 2 // org.apache.lucene.store.FlushInfo other
         7: .line 64
            aload 0 /* this */
            getfield org.apache.lucene.store.FlushInfo.estimatedSegmentSize:J
            aload 2 /* other */
            getfield org.apache.lucene.store.FlushInfo.estimatedSegmentSize:J
            lcmp
            ifeq 9
         8: .line 65
            iconst_0
            ireturn
         9: .line 66
      StackMap locals: org.apache.lucene.store.FlushInfo
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.FlushInfo.numDocs:I
            aload 2 /* other */
            getfield org.apache.lucene.store.FlushInfo.numDocs:I
            if_icmpeq 11
        10: .line 67
            iconst_0
            ireturn
        11: .line 68
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.apache.lucene.store.FlushInfo other
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.lucene.store.FlushInfo this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lorg/apache/lucene/store/FlushInfo;
            0   12     1    obj  Ljava/lang/Object;
            7   12     2  other  Lorg/apache/lucene/store/FlushInfo;
    MethodParameters:
      Name  Flags
      obj   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.FlushInfo this
         0: .line 73
            new java.lang.StringBuilder
            dup
            ldc "FlushInfo [numDocs="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.store.FlushInfo.numDocs:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", estimatedSegmentSize="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         1: .line 74
            aload 0 /* this */
            getfield org.apache.lucene.store.FlushInfo.estimatedSegmentSize:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 73
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.lucene.store.FlushInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/store/FlushInfo;
}
SourceFile: "FlushInfo.java"