PenProfile 2.x

Uses of Interface
com.livescribe.ext.util.Collection

Packages that use Collection
com.livescribe.ext.util Contains miscellaneous helper utilities, including a logging helper, collections classes, and a few threading primitives. 
 

Uses of Collection in com.livescribe.ext.util
 

Subinterfaces of Collection in com.livescribe.ext.util
 interface List
           
 interface Queue
           
 

Classes in com.livescribe.ext.util that implement Collection
 class LinkedList
          LinkedList implements the standard Java SE class
 class PriorityQueue
          PriorityQueue implements the standard Java SE class Underlying implementation is a standard heap
 

Methods in com.livescribe.ext.util with parameters of type Collection
 boolean PriorityQueue.addAll(Collection c)
          Adds all elements of the collection to the priority queue
 boolean List.addAll(Collection c)
           
 boolean LinkedList.addAll(Collection c)
          Appends collection to the list
 boolean Collection.addAll(Collection c)
           
 boolean List.addAll(int index, Collection c)
           
 boolean LinkedList.addAll(int index, Collection c)
          Adds collection at index
 boolean PriorityQueue.containsAll(Collection c)
          Check if priority queue contains all the objects in the collection
 boolean List.containsAll(Collection c)
           
 boolean LinkedList.containsAll(Collection c)
          Returns true if the list contains all objects in the collection
 boolean Collection.containsAll(Collection c)
           
 boolean PriorityQueue.removeAll(Collection c)
          Remove all objects in the collection from the priority queue
 boolean List.removeAll(Collection c)
           
 boolean LinkedList.removeAll(Collection c)
          Remove all objects in the list that is part of the collection
 boolean Collection.removeAll(Collection c)
           
 boolean PriorityQueue.retainAll(Collection c)
          Remove all but the objects in the PriorityQueue but the objects in the collection
 boolean List.retainAll(Collection c)
           
 boolean LinkedList.retainAll(Collection c)
          Removes all the objects in the list BUT the objects in the collection
 boolean Collection.retainAll(Collection c)
           
 

Constructors in com.livescribe.ext.util with parameters of type Collection
LinkedList(Collection c)
           
PriorityQueue(Collection c)
           
 


PenProfile 2.x

Copyright © 2010 Livescribe Inc. All Rights Reserved.
Confidential and subject to NDA.