public class org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T extends java.lang.Comparable<T>>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree
  super_class: java.lang.Object
{
  private org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node top;
    descriptor: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
         0: .line 56
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 57
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         2: .line 58
            return
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>;

  public void insert();
    descriptor: (Ljava/lang/Comparable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
        start local 1 // java.lang.Comparable element
         0: .line 64
            aload 1 /* element */
            ifnull 5
         1: .line 65
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 4
         2: .line 66
            aload 0 /* this */
            new org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
            dup
            aload 0 /* this */
            aload 1 /* element */
            aconst_null
            invokespecial org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.<init>:(Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree;Ljava/lang/Comparable;Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;)V
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         3: .line 67
            goto 5
         4: .line 68
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            aload 1 /* element */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.insert:(Ljava/lang/Comparable;)Z
            pop
         5: .line 71
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Comparable element
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>;
            0    6     1  element  TT;
    Signature: (TT;)V
    MethodParameters:
         Name  Flags
      element  final

  public boolean delete();
    descriptor: (Ljava/lang/Comparable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
        start local 1 // java.lang.Comparable element
         0: .line 84
            aload 1 /* element */
            ifnull 10
         1: .line 85
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.getNotSmaller:(Ljava/lang/Comparable;)Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 2 /* node */
        start local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         2: goto 9
         3: .line 88
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
            aload 2 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            aload 1 /* element */
            if_acmpne 6
         4: .line 89
            aload 2 /* node */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.delete:()V
         5: .line 90
            iconst_1
            ireturn
         6: .line 91
      StackMap locals:
      StackMap stack:
            aload 2 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            aload 1 /* element */
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            ifle 8
         7: .line 94
            iconst_0
            ireturn
         8: .line 85
      StackMap locals:
      StackMap stack:
            aload 2 /* node */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.getNext:()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 2 /* node */
      StackMap locals:
      StackMap stack:
         9: aload 2 /* node */
            ifnonnull 3
        end local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
        10: .line 98
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Comparable element
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>;
            0   11     1  element  TT;
            2   10     2     node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
    Signature: (TT;)Z
    MethodParameters:
         Name  Flags
      element  final

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
         0: .line 105
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
         0: .line 113
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.size:()I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>;

  public org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node getSmallest();
    descriptor: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
         0: .line 126
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.getSmallest:()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
      StackMap locals:
      StackMap stack: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
         2: areturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>;
    Signature: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  public org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node getLargest();
    descriptor: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
         0: .line 139
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.getLargest:()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
      StackMap locals:
      StackMap stack: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
         2: areturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>;
    Signature: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  public org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node getNotSmaller(T);
    descriptor: (Ljava/lang/Comparable;)Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
        start local 1 // java.lang.Comparable reference
         0: .line 154
            aconst_null
            astore 2 /* candidate */
        start local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node candidate
         1: .line 155
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 3 /* node */
        start local 3 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         2: goto 12
         3: .line 156
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
            aload 3 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            aload 1 /* reference */
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            ifge 8
         4: .line 157
            aload 3 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 6
         5: .line 158
            aload 2 /* candidate */
            areturn
         6: .line 160
      StackMap locals:
      StackMap stack:
            aload 3 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 3 /* node */
         7: .line 161
            goto 12
         8: .line 162
      StackMap locals:
      StackMap stack:
            aload 3 /* node */
            astore 2 /* candidate */
         9: .line 163
            aload 3 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 11
        10: .line 164
            aload 2 /* candidate */
            areturn
        11: .line 166
      StackMap locals:
      StackMap stack:
            aload 3 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 3 /* node */
        12: .line 155
      StackMap locals:
      StackMap stack:
            aload 3 /* node */
            ifnonnull 3
        end local 3 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
        13: .line 169
            aconst_null
            areturn
        end local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node candidate
        end local 1 // java.lang.Comparable reference
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>;
            0   14     1  reference  TT;
            1   14     2  candidate  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
            2   13     3       node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
    Signature: (TT;)Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
    MethodParameters:
           Name  Flags
      reference  final

  public org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node getNotLarger(T);
    descriptor: (Ljava/lang/Comparable;)Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
        start local 1 // java.lang.Comparable reference
         0: .line 185
            aconst_null
            astore 2 /* candidate */
        start local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node candidate
         1: .line 186
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 3 /* node */
        start local 3 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         2: goto 12
         3: .line 187
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
            aload 3 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            aload 1 /* reference */
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            ifle 8
         4: .line 188
            aload 3 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 6
         5: .line 189
            aload 2 /* candidate */
            areturn
         6: .line 191
      StackMap locals:
      StackMap stack:
            aload 3 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 3 /* node */
         7: .line 192
            goto 12
         8: .line 193
      StackMap locals:
      StackMap stack:
            aload 3 /* node */
            astore 2 /* candidate */
         9: .line 194
            aload 3 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 11
        10: .line 195
            aload 2 /* candidate */
            areturn
        11: .line 197
      StackMap locals:
      StackMap stack:
            aload 3 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 3 /* node */
        12: .line 186
      StackMap locals:
      StackMap stack:
            aload 3 /* node */
            ifnonnull 3
        end local 3 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
        13: .line 200
            aconst_null
            areturn
        end local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node candidate
        end local 1 // java.lang.Comparable reference
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>;
            0   14     1  reference  TT;
            1   14     2  candidate  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
            2   13     3       node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
    Signature: (TT;)Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
    MethodParameters:
           Name  Flags
      reference  final
}
Signature: <T::Ljava/lang/Comparable<TT;>;>Ljava/lang/Object;
SourceFile: "AVLTree.java"
NestMembers:
  org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node  org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew
InnerClasses:
  public Node = org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node of org.apache.commons.math3.geometry.partitioning.utilities.AVLTree
  private final Skew = org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew of org.apache.commons.math3.geometry.partitioning.utilities.AVLTree
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()