Class IdentityHashSet<T>

java.lang.Object
com.vaadin.copilot.IdentityHashSet<T>
Type Parameters:
T - the type of objects in the set
All Implemented Interfaces:
Iterable<T>, Collection<T>, Set<T>

public class IdentityHashSet<T> extends Object implements Set<T>
A Set implementation that uses identity comparison instead of equals. This means that two objects are considered equal if they are the same object (==), not if they are equal according to the equals method.