public abstract class org.apache.lucene.util.Selector
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.lucene.util.Selector
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.Selector this
         0: .line 21
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.lucene.util.Selector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/Selector;

  public abstract void select(int, int, int);
    descriptor: (III)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      from  
      to    
      k     

  void checkArgs(int, int, int);
    descriptor: (III)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.apache.lucene.util.Selector this
        start local 1 // int from
        start local 2 // int to
        start local 3 // int k
         0: .line 31
            iload 3 /* k */
            iload 1 /* from */
            if_icmpge 2
         1: .line 32
            new java.lang.IllegalArgumentException
            dup
            ldc "k must be >= from"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 34
      StackMap locals:
      StackMap stack:
            iload 3 /* k */
            iload 2 /* to */
            if_icmplt 4
         3: .line 35
            new java.lang.IllegalArgumentException
            dup
            ldc "k must be < to"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 37
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int k
        end local 2 // int to
        end local 1 // int from
        end local 0 // org.apache.lucene.util.Selector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/lucene/util/Selector;
            0    5     1  from  I
            0    5     2    to  I
            0    5     3     k  I
    MethodParameters:
      Name  Flags
      from  
      to    
      k     

  protected abstract void swap(int, int);
    descriptor: (II)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      i     
      j     
}
SourceFile: "Selector.java"