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 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
aconst_null
putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
2: return
end local 0 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 start local 1 0: aload 1
ifnull 5
1: aload 0
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
ifnonnull 4
2: aload 0
new org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
dup
aload 0
aload 1
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: goto 5
4: StackMap locals:
StackMap stack:
aload 0
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
aload 1
invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.insert:(Ljava/lang/Comparable;)Z
pop
5: StackMap locals:
StackMap stack:
return
end local 1 end local 0 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 start local 1 0: aload 1
ifnull 10
1: aload 0
aload 1
invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.getNotSmaller:(Ljava/lang/Comparable;)Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
astore 2
start local 2 2: goto 9
3: StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
StackMap stack:
aload 2
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
aload 1
if_acmpne 6
4: aload 2
invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.delete:()V
5: iconst_1
ireturn
6: StackMap locals:
StackMap stack:
aload 2
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
aload 1
invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
ifle 8
7: iconst_0
ireturn
8: StackMap locals:
StackMap stack:
aload 2
invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.getNext:()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
astore 2
StackMap locals:
StackMap stack:
9: aload 2
ifnonnull 3
end local 2 10: StackMap locals:
StackMap stack:
iconst_0
ireturn
end local 1 end local 0 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 0: aload 0
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 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 0: aload 0
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
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 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 0: aload 0
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
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 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 0: aload 0
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
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 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 start local 1 0: aconst_null
astore 2
start local 2 1: aload 0
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
astore 3
start local 3 2: goto 12
3: StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
StackMap stack:
aload 3
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
aload 1
invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
ifge 8
4: aload 3
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
ifnonnull 6
5: aload 2
areturn
6: StackMap locals:
StackMap stack:
aload 3
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
astore 3
7: goto 12
8: StackMap locals:
StackMap stack:
aload 3
astore 2
9: aload 3
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
ifnonnull 11
10: aload 2
areturn
11: StackMap locals:
StackMap stack:
aload 3
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
astore 3
12: StackMap locals:
StackMap stack:
aload 3
ifnonnull 3
end local 3 13: aconst_null
areturn
end local 2 end local 1 end local 0 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 start local 1 0: aconst_null
astore 2
start local 2 1: aload 0
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
astore 3
start local 3 2: goto 12
3: StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
StackMap stack:
aload 3
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
aload 1
invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
ifle 8
4: aload 3
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
ifnonnull 6
5: aload 2
areturn
6: StackMap locals:
StackMap stack:
aload 3
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
astore 3
7: goto 12
8: StackMap locals:
StackMap stack:
aload 3
astore 2
9: aload 3
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
ifnonnull 11
10: aload 2
areturn
11: StackMap locals:
StackMap stack:
aload 3
getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
astore 3
12: StackMap locals:
StackMap stack:
aload 3
ifnonnull 3
end local 3 13: aconst_null
areturn
end local 2 end local 1 end local 0 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()