public final class org.apache.lucene.index.Impact
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.index.Impact
  super_class: java.lang.Object
{
  public int freq;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public long norm;
    descriptor: J
    flags: (0x0001) ACC_PUBLIC

  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.index.Impact this
        start local 1 // int freq
        start local 2 // long norm
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            iload 1 /* freq */
            putfield org.apache.lucene.index.Impact.freq:I
         2: .line 39
            aload 0 /* this */
            lload 2 /* norm */
            putfield org.apache.lucene.index.Impact.norm:J
         3: .line 40
            return
        end local 2 // long norm
        end local 1 // int freq
        end local 0 // org.apache.lucene.index.Impact this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/index/Impact;
            0    4     1  freq  I
            0    4     2  norm  J
    MethodParameters:
      Name  Flags
      freq  
      norm  

  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.index.Impact this
         0: .line 44
            new java.lang.StringBuilder
            dup
            ldc "{freq="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.index.Impact.freq:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ",norm="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.index.Impact.norm:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc "}"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.lucene.index.Impact this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/Impact;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.lucene.index.Impact this
         0: .line 49
            aload 0 /* this */
            getfield org.apache.lucene.index.Impact.freq:I
            istore 1 /* h */
        start local 1 // int h
         1: .line 50
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.index.Impact.norm:J
            invokestatic java.lang.Long.hashCode:(J)I
            iadd
            istore 1 /* h */
         2: .line 51
            iload 1 /* h */
            ireturn
        end local 1 // int h
        end local 0 // org.apache.lucene.index.Impact this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/index/Impact;
            1    3     1     h  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.index.Impact this
        start local 1 // java.lang.Object obj
         0: .line 56
            aload 1 /* obj */
            ifnull 1
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
         2: .line 57
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.apache.lucene.index.Impact
            astore 2 /* other */
        start local 2 // org.apache.lucene.index.Impact other
         3: .line 58
            aload 0 /* this */
            getfield org.apache.lucene.index.Impact.freq:I
            aload 2 /* other */
            getfield org.apache.lucene.index.Impact.freq:I
            if_icmpne 4
            aload 0 /* this */
            getfield org.apache.lucene.index.Impact.norm:J
            aload 2 /* other */
            getfield org.apache.lucene.index.Impact.norm:J
            lcmp
            ifne 4
            iconst_1
            ireturn
      StackMap locals: org.apache.lucene.index.Impact
      StackMap stack:
         4: iconst_0
            ireturn
        end local 2 // org.apache.lucene.index.Impact other
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.lucene.index.Impact this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/lucene/index/Impact;
            0    5     1    obj  Ljava/lang/Object;
            3    5     2  other  Lorg/apache/lucene/index/Impact;
    MethodParameters:
      Name  Flags
      obj   
}
SourceFile: "Impact.java"