Example usage for java.util AbstractSet subclass-usage

List of usage examples for java.util AbstractSet subclass-usage

Introduction

In this page you can find the example usage for java.util AbstractSet subclass-usage.

Usage

From source file org.diorite.utils.collections.sets.ConcurrentSet.java

/**
 * Concurrent set implemented as wrapper for ConcurrentHashMap.
 *
 * @param <E> elements type.
 *
 * @see ConcurrentHashMap

From source file org.intermine.webservice.client.lists.ItemList.java

/**
 * A representation of a list of objects stored on the server.
 *
 * The object is not meant to be directly instantiated nor modified. Rather it
 * should be retrieved from the originating web-service, and only modified through
 * the available methods (appending new items, and renaming the list).

From source file org.maltparser.core.helper.HashSet.java

/**
 * A memory-efficient hash set.
 * 
 * @param <E> the element type
 */
public class HashSet<E> extends AbstractSet<E> implements Serializable {

From source file pt.utl.ist.online.learning.utils.MemoryEfficientHashSet.java

/**
 * A memory-efficient hash set.
 * 
 * @param <E> the element type
 */
public class MemoryEfficientHashSet<E> extends AbstractSet<E> implements Serializable {

From source file uniol.apt.adt.CollectionToUnmodifiableSetAdapter.java

/**
 * Given a collection which really behaves like a set (read: has no duplicate entries), implement a read-only set.
 * @param <E> The type of elements of the set.
 * @author Uli Schlachter
 */
public class CollectionToUnmodifiableSetAdapter<E> extends AbstractSet<E> {