public class

SynchronizedLinkedSet

extends Object
java.lang.Object
   ↳ com.pnfsoftware.jeb.util.collect.SynchronizedLinkedSet<E>

Class Overview

A serializable, inefficient, fully synchronized, linked pseudo-set. (Refer to SynchronizedLinkedMap for additional details.)

This class does not allow null keys.

Methods of this object are guaranteed to never raise ConcurrentModificationException.

Summary

Public Constructors
SynchronizedLinkedSet()
Public Methods
boolean add(E e)
void clear()
boolean contains(E e)
Set<E> copyOfEntries()
E firstEntry()
@return
boolean isEmpty()
boolean remove(E e)
int size()
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public SynchronizedLinkedSet ()

Public Methods

public boolean add (E e)

public void clear ()

public boolean contains (E e)

public Set<E> copyOfEntries ()

public E firstEntry ()

@return

Throws
NoSuchElementException if the map is empty

public boolean isEmpty ()

public boolean remove (E e)

public int size ()

public String toString ()