All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jn.langx.util.collection.IdentityHashSet Maven / Gradle / Ivy

Go to download

Java lang extensions for java6+, a supplement to , replacement of a Guava, commons-lang. Core utilities, Collection utilities, IO utilities, Cache, Configuration library ...

There is a newer version: 4.8.2
Show newest version
package com.jn.langx.util.collection;


import java.util.*;

/**
 * An {@link IdentityHashMap}-backed {@link Set}.
 *
 * @author The Apache Directory Project ([email protected])
 * @version $Rev: 555855 $, $Date: 2007-07-13 12:19:00 +0900 (Fri, 13 Jul 2007) $
 */
public class IdentityHashSet extends AbstractSet {
    private final Map delegate = new IdentityHashMap();

    public IdentityHashSet() {
    }

    public IdentityHashSet(Collection c) {
        addAll(c);
    }

    @Override
    public int size() {
        return delegate.size();
    }

    @Override
    public boolean contains(Object o) {
        //noinspection SuspiciousMethodCalls
        return delegate.containsKey(o);
    }

    @Override
    public Iterator iterator() {
        return delegate.keySet().iterator();
    }

    @Override
    public boolean add(E arg0) {
        return delegate.put(arg0, Boolean.TRUE) == null;
    }

    @Override
    public boolean remove(Object o) {
        //noinspection SuspiciousMethodCalls
        return delegate.remove(o) != null;
    }

    @Override
    public void clear() {
        delegate.clear();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy