Uses of Class
org.apache.hadoop.util.IntrusiveCollection
Packages that use IntrusiveCollection
-
Uses of IntrusiveCollection in org.apache.hadoop.util
Methods in org.apache.hadoop.util with parameters of type IntrusiveCollectionModifier and TypeMethodDescriptionIntrusiveCollection.Element.getNext(IntrusiveCollection<? extends IntrusiveCollection.Element> list) Get the next pointer of an element.IntrusiveCollection.Element.getPrev(IntrusiveCollection<? extends IntrusiveCollection.Element> list) Get the prev pointer of an element.voidIntrusiveCollection.Element.insertInternal(IntrusiveCollection<? extends IntrusiveCollection.Element> list, IntrusiveCollection.Element prev, IntrusiveCollection.Element next) Insert this element into the list.booleanIntrusiveCollection.Element.isInList(IntrusiveCollection<? extends IntrusiveCollection.Element> list) Returns true if this element is in the provided list.voidIntrusiveCollection.Element.removeInternal(IntrusiveCollection<? extends IntrusiveCollection.Element> list) Remove an element from the list.voidIntrusiveCollection.Element.setNext(IntrusiveCollection<? extends IntrusiveCollection.Element> list, IntrusiveCollection.Element next) Set the next pointer of an element already in the list.voidIntrusiveCollection.Element.setPrev(IntrusiveCollection<? extends IntrusiveCollection.Element> list, IntrusiveCollection.Element prev) Set the prev pointer of an element already in the list.