fern.analysis
Class IntStack

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.IntStack
All Implemented Interfaces:
cern.colt.buffer.IntBufferConsumer, IntSearchStructure, Serializable, Cloneable

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

IntStack is an search structure for AnalysisBase representing an lifo stack for a depth first search.

Author:
Florian Erhard
See Also:
Serialized Form

Constructor Summary
IntStack()
           
IntStack(int initialSize)
           
 
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

IntStack

public IntStack()

IntStack

public IntStack(int initialSize)
Method Detail

get

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