Package com.quadrique.jbuildingblocks.core.dataStructure

Class Summary
JbbArrayListWithoutDuplicates<V> Sample usage: ArrayList in = new ArrayList();
in.add(new String("blue"));
in.add(new String("blue"));
in.add(new String("white"));
in.add(new String("red"));

ArrayList out = JbbArrayListWithoutDuplicates.getListWithoutDuplicates(in);

if (out.size() != 3) Assert.fail("invalid results: "+out.size());
JbbArrayListWithoutDuplicatesTest A test class for the JUnit testing framework
JbbDataStructure  
JbbDataStructureTest  
JbbDateFromTo A simple JAVA bean to manipulate a date interval
JbbEnumArrayList<E extends Enum<E>,V> Utility data structure that is used to associate an enum value and an ArrayList collection of values.
JbbEnumArrayListTest A test class for the JUnit testing framework
JbbHashMapWithMultipleValuesPerKey<K,V> This data structure is similar to a HashMap except that the data associated to any given key is a list of values (an ArrrayList instance).
JbbHashMapWithMultipleValuesPerKeyTest A test class for the JUnit testing framework
JbbHistogram<V> The histogram of a given set of input values is a list of buckets where each bucket contains one of the input values and its associated number of occurences in the set.
JbbHistogramBucket<V> A simple data structure that represents a bucket in a histogram: a bucket is a value and the corresponding number of occurences
JbbHistogramTest A test class for the JUnit testing framework
JbbIntLabelIntValue A simple JAVA bean to manipulate a label/value pair
JbbIntLabelToIndexMap A simple data structures that maintains a map between a set of label and their numeric value.
JbbIntLabelToIndexMapTest A test class for the JUnit testing framework
JbbLabelToIndexMap A simple data structures that maintains a map between a set of label and their numeric value.
JbbStringLabelIntValue A simple JAVA bean to manipulate a label/value pair
JbbStringLabelStringValue A simple JAVA bean to manipulate a label/value pair
JbbStringLabelToIndexMap A simple data structures that maintains a map between a set of label and their numeric value.
JbbStringLabelToIndexMapTest A test class for the JUnit testing framework
 

Enum Summary
JbbEnumArrayListTest.SearchType  
 



Copyright © 2001-2008 Quadrique Corporation. All Rights Reserved.