public class

IdentifierSet

extends ForwardingSet<E>
java.lang.Object
   ↳ com.google.common.collect.ForwardingObject
     ↳ com.google.common.collect.ForwardingCollection<E>
       ↳ com.google.common.collect.ForwardingSet<E>
         ↳ com.atlassian.crowd.embedded.impl.IdentifierSet

Class Overview

This class behaves like a HashSet with lower-case String values. All element arguments are lower-cased before further processing.

Summary

Public Constructors
IdentifierSet()
IdentifierSet(int expectedSize)
Public Methods
boolean add(String element)
boolean addAll(Collection<? extends String> strings)
boolean contains(Object object)
boolean containsAll(Collection<?> collection)
boolean remove(Object object)
boolean removeAll(Collection<?> collection)
boolean retainAll(Collection<?> collection)
Protected Methods
Set<String> delegate()
[Expand]
Inherited Methods
From class com.google.common.collect.ForwardingSet
From class com.google.common.collect.ForwardingCollection
From class com.google.common.collect.ForwardingObject
From class java.lang.Object
From interface java.lang.Iterable
From interface java.util.Collection
From interface java.util.Set

Public Constructors

public IdentifierSet ()

public IdentifierSet (int expectedSize)

Public Methods

public boolean add (String element)

public boolean addAll (Collection<? extends String> strings)

public boolean contains (Object object)

public boolean containsAll (Collection<?> collection)

public boolean remove (Object object)

public boolean removeAll (Collection<?> collection)

public boolean retainAll (Collection<?> collection)

Protected Methods

protected Set<String> delegate ()