Example usage for java.util HashSet subclass-usage

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

Introduction

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

Usage

From source file modalLogic.tableau.WorldRelation.java

/**
 * Models a reachability relation between two worlds (see Kripke Models)
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */
public class WorldRelation<P> extends HashSet<Pair<World<P>>> {
    private MultiMap<LabelledFormula<P>, Pair<World<P>>> resulting = new MultiHashMap<LabelledFormula<P>, Pair<World<P>>>();

From source file com.brightcove.zartan.common.catalog.TagSet.java

/**
 * A TagSet is a text-normalized HashSet<String>. Its API may be used in 
 * exactly the same way as that for HashSet, but all params passed into its 
 * methods will be converted to lower case before forwarding to its HashSet 
 * parent, and TagSet construction will similarly perform text normalization 
 * on any passed in Strings before returning. 

From source file WeakHashSet.java

/**
 * A weak HashSet. An element stored in the WeakHashSet might be
 * garbage collected, if there is no strong reference to this element.
 */

public class WeakHashSet extends HashSet {

From source file WeakHashSet.java

/**
 * A weak HashSet. An element stored in the WeakHashSet might be
 * garbage collected, if there is no strong reference to this element.
 */

public class WeakHashSet extends HashSet {

From source file org.intalio.tempo.workflow.auth.AuthIdentifierSet.java

@MappedSuperclass
public class AuthIdentifierSet extends HashSet<String> {

    private static final long serialVersionUID = -6628743014089702581L;

    public AuthIdentifierSet() {

From source file org.osaf.cosmo.dav.acl.DavPrivilegeSet.java

/**
 * <p>
 * A set of WebDAV access control privileges.
 * </p>
     
 */

From source file org.unitedinternet.cosmo.dav.acl.DavPrivilegeSet.java

/**
 * <p>
 * A set of WebDAV access control privileges.
 * </p>
     
 */