fern.analysis
Class IntQueue

java.lang.Object
  extended by cern.colt.PersistentObject
      extended by cern.colt.list.AbstractCollection
          extended by cern.colt.list.AbstractList
              extended by cern.colt.list.AbstractIntList
                  extended by cern.colt.list.IntArrayList
                      extended by fern.analysis.IntQueue
All Implemented Interfaces:
cern.colt.buffer.IntBufferConsumer, IntSearchStructure, Serializable, Cloneable

public class IntQueue
extends cern.colt.list.IntArrayList
implements IntSearchStructure

IntQueue is an search structure for AnalysisBase representing an fifo queue for a breadth first search.

Author:
Florian Erhard
See Also:
Serialized Form

Constructor Summary
IntQueue()
           
IntQueue(int initialCapacity)
           
 
Method Summary
 int get()
           
 
Methods inherited from class cern.colt.list.IntArrayList
add, beforeInsert, binarySearchFromTo, clone, copy, elements, elements, ensureCapacity, equals, forEach, get, getQuick, indexOfFromTo, lastIndexOfFromTo, partFromTo, removeAll, replaceFromToWithFrom, retainAll, reverse, set, setQuick, shuffleFromTo, sortFromTo, trimToSize
 
Methods inherited from class cern.colt.list.AbstractIntList
addAllOf, addAllOfFromTo, beforeInsertAllOfFromTo, binarySearch, contains, delete, fillFromToWith, indexOf, lastIndexOf, mergeSortFromTo, mergeSortFromTo, quickSortFromTo, quickSortFromTo, removeFromTo, replaceFromToWithFromTo, replaceFromWith, size, times, toList, toString
 
Methods inherited from class cern.colt.list.AbstractList
addAllOf, beforeInsertAllOf, clear, mergeSort, quickSort, remove, setSize, shuffle, sort
 
Methods inherited from class cern.colt.list.AbstractCollection
isEmpty
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface fern.analysis.IntSearchStructure
add, isEmpty
 

Constructor Detail

IntQueue

public IntQueue()

IntQueue

public IntQueue(int initialCapacity)
Method Detail

get

public int get()
Specified by:
get in interface IntSearchStructure