List of usage examples for java.util AbstractSet subclass-usage
From source file HashSet.java
/** * A memory-efficient hash set. * * @param <E> the element type */ public class HashSet<E> extends AbstractSet<E> implements Serializable {
From source file com.google.gwt.dev.util.collect.HashSet.java
/** * A memory-efficient hash set. * * @param <E> the element type */ public class HashSet<E> extends AbstractSet<E> implements Serializable {
From source file BoundedPriorityQueue.java
/**
* A <code>BoundedPriorityQueue</code> implements a priority queue
* with an upper bound on the number of elements. If the queue is not
* full, added elements are always added. If the queue is full and
* the added element is greater than the smallest element in the
* queue, the smallest element is removed and the new element is
From source file CompactHashSet.java
/**
* A {@code CompactHashSet} implements the set interface more tightly in
* memory and more efficiently than Java's {@link java.util.HashSet}.
*
* <h3>Sizing and Resizing</h3>
*
From source file ConcurrentHashSet.java
/**
* A {@link Map}-backed {@link Set}.
*
* @author The Apache MINA Project (dev@mina.apache.org)
* @version $Rev: 597692 $, $Date: 2007-11-23 08:56:32 -0700 (Fri, 23 Nov 2007)
* $
From source file ArraySet.java
/**
* A set acts like array.
*
* @author higa
* @param <E>
* the element type
From source file WeakSet.java
/** Set which holds its members by using of WeakReferences.
* MT level: unsafe.
* <p><strong>Note:</strong> as of JDK 6.0 (b51), you can instead use
* <pre>
* Set<T> s = Collections.newSetFromMap(new WeakHashMap<T, Boolean>());
* </pre>
From source file gate.annotation.AnnotationSetImpl.java
/**
* Implementation of AnnotationSet. Has a number of indices, all bar one of
* which are null by default and are only constructed when asked for. Has lots
* of get methods with various selection criteria; these return views into the
* set, which are nonetheless valid sets in their own right (but will not
* necesarily be fully indexed). Has a name, which is null by default; clients
From source file FileBaseDataMap.java
class FileBaseDataMapSet extends AbstractSet implements Set { private FileBaseDataMap fileBaseDataMap = null; // public FileBaseDataMapSet(FileBaseDataMap fileBaseDataMap) {
From source file okuyama.imdst.util.FileBaseDataMap.java
class FileBaseDataMapSet extends AbstractSet implements Set, Cloneable, Serializable { private FileBaseDataMap fileBaseDataMap = null; // public FileBaseDataMapSet(FileBaseDataMap fileBaseDataMap) {