class org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values extends java.util.AbstractCollection<V>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values
  super_class: java.util.AbstractCollection
{
  final org.apache.commons.collections4.trie.AbstractPatriciaTrie this$0;
    descriptor: Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private void <init>(org.apache.commons.collections4.trie.AbstractPatriciaTrie);
    descriptor: (Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
         0: .line 1487
            aload 0 /* this */
            aload 1
            putfield org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values.this$0:Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie;
            aload 0 /* this */
            invokespecial java.util.AbstractCollection.<init>:()V
            return
        end local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie$Values;
    MethodParameters:
        Name  Flags
      this$0  final

  public java.util.Iterator<V> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
         0: .line 1491
            new org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values$ValueIterator
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values$ValueIterator.<init>:(Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie$Values;)V
            areturn
        end local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie$Values;
    Signature: ()Ljava/util/Iterator<TV;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
         0: .line 1496
            aload 0 /* this */
            getfield org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values.this$0:Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie;
            invokevirtual org.apache.commons.collections4.trie.AbstractPatriciaTrie.size:()I
            ireturn
        end local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie$Values;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
        start local 1 // java.lang.Object o
         0: .line 1501
            aload 0 /* this */
            getfield org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values.this$0:Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie;
            aload 1 /* o */
            invokevirtual org.apache.commons.collections4.trie.AbstractPatriciaTrie.containsValue:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie$Values;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     final

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
         0: .line 1506
            aload 0 /* this */
            getfield org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values.this$0:Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie;
            invokevirtual org.apache.commons.collections4.trie.AbstractPatriciaTrie.clear:()V
         1: .line 1507
            return
        end local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie$Values;

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
        start local 1 // java.lang.Object o
         0: .line 1511
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values.iterator:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         1: goto 6
         2: .line 1512
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object value
         3: .line 1513
            aload 3 /* value */
            aload 1 /* o */
            invokestatic org.apache.commons.collections4.trie.AbstractPatriciaTrie.compare:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         4: .line 1514
            aload 2 /* it */
            invokeinterface java.util.Iterator.remove:()V
         5: .line 1515
            iconst_1
            ireturn
        end local 3 // java.lang.Object value
         6: .line 1511
      StackMap locals:
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
        end local 2 // java.util.Iterator it
         7: .line 1518
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie$Values;
            0    8     1      o  Ljava/lang/Object;
            1    7     2     it  Ljava/util/Iterator<TV;>;
            3    6     3  value  TV;
    MethodParameters:
      Name  Flags
      o     final

  static org.apache.commons.collections4.trie.AbstractPatriciaTrie access$0(org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values);
    descriptor: (Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie$Values;)Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie;
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1487
            aload 0
            getfield org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values.this$0:Lorg/apache/commons/collections4/trie/AbstractPatriciaTrie;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/util/AbstractCollection<TV;>;
SourceFile: "AbstractPatriciaTrie.java"
NestHost: org.apache.commons.collections4.trie.AbstractPatriciaTrie
InnerClasses:
  private Values = org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values of org.apache.commons.collections4.trie.AbstractPatriciaTrie
  private ValueIterator = org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values$ValueIterator of org.apache.commons.collections4.trie.AbstractPatriciaTrie$Values