List of usage examples for java.util AbstractCollection subclass-usage
From source file craterdog.collections.primitives.RandomizedTree.java
/**
* This class provides an implementation of the randomized binary search tree (RBST). The approach
* was defined by CONRADO MART ?INEZ And SALVADOR ROURA in their paper published in Journal of
* the ACM, Vol. 45, No. 2, March 1998, pp. 288323. It implements a standard binary search tree
* but uses random choices to keep the tree statically balanced after each insertion or deletion.
* All nodes in the tree have an equal probability of being the root node. This implementation is
From source file com.adaptris.core.ChannelList.java
/**
* <p>
* Container for a collection of {@link com.adaptris.core.Channel} objects
* </p>
*
* @config channel-list
From source file ConcurrentDoublyLinkedList.java
/**
* A concurrent linked-list implementation of a {@link Deque} (double-ended
* queue). Concurrent insertion, removal, and access operations execute safely
* across multiple threads. Iterators are <i>weakly consistent</i>, returning
* elements reflecting the state of the deque at some point at or since the
* creation of the iterator. They do <em>not</em> throw {@link
From source file org.zilverline.core.FileSystemCollection.java
/**
* A Collection is a number of documents in a directory that are indexed together.
*
* @author Michael Franken
* @version $Revision: 1.19 $
*/
From source file org.apache.hadoop.hive.ql.exec.persistence.FlatRowContainer.java
@SuppressWarnings("deprecation") public class FlatRowContainer extends AbstractCollection<Object> implements MapJoinRowContainer, AbstractRowContainer.RowIterator<List<Object>>, List<Object> { private static final Object[] EMPTY_OBJECT_ARRAY = new Object[0]; private static final int UNKNOWN = Integer.MAX_VALUE;
From source file com.adaptris.core.ServiceCollectionImp.java
/** * <p> * Behaviour common to <code>ServiceCollection</code>s. * </p> */ public abstract class ServiceCollectionImp extends AbstractCollection<Service>
From source file org.apache.hadoop.hive.ql.exec.persistence.LazyFlatRowContainer.java
@SuppressWarnings("deprecation") public class LazyFlatRowContainer extends AbstractCollection<Object> implements MapJoinRowContainer, AbstractRowContainer.RowIterator<List<Object>>, List<Object> { private static final Object[] EMPTY_OBJECT_ARRAY = new Object[0]; private static final int UNKNOWN = Integer.MAX_VALUE;
From source file de.joinout.criztovyl.tools.files.FileList.java
/**
* This is a class that holds a list of files and directories inside a directory. It also can scan a directory and find all files inside.<br>
* After scanning, the file list can be saved to a file for later use.<br>
* You can ignore files which matches an regular expression.<br>
* Object can be saved as JSON.<br>
* The list also holds when it was last time listed, also for later usage.<br>
From source file org.zilverline.core.IMAPCollection.java
/**
* A Collection is a number of documents in a directory that are indexed together.
*
* @author Michael Franken
* @version $Revision: 1.15 $
*/