public interface ActiveSet extends ActiveCollection, Set
Set
semantics, which is backed by a PlexusContainer
instance,
and retrieves a fresh batch of elements for each method call.
UnsupportedOperationException
if a mutator method is called.Modifier and Type | Method and Description |
---|---|
boolean |
checkedContains(Object value)
Same as
Set.contains(Object) , except this method will throw a
ComponentLookupException if one or more elements in the set fail during lookup. |
boolean |
checkedContainsAll(Collection collection)
Same as
Set.containsAll(Collection) , except this method will throw a
ComponentLookupException if one or more elements in the set fail during lookup. |
Iterator |
checkedIterator()
Same as
Set.iterator() , except this method will throw a
ComponentLookupException if one or more elements in the set fail during lookup. |
Object[] |
checkedToArray()
Same as
Set.toArray() , except this method will throw a
ComponentLookupException if one or more elements in the set fail during lookup. |
Object[] |
checkedToArray(Object[] array)
Same as
Set.toArray(Object[]) , except this method will throw a
ComponentLookupException if one or more elements in the set fail during lookup. |
checkedIsEmpty, checkedSize, getRole, isEmpty, size
static final String ROLE
boolean checkedContains(Object value) throws org.codehaus.plexus.component.repository.exception.ComponentLookupException
Set.contains(Object)
, except this method will throw a
ComponentLookupException
if one or more elements in the set fail during lookup.org.codehaus.plexus.component.repository.exception.ComponentLookupException
- if one or more elements of the set fail during lookup.boolean checkedContainsAll(Collection collection) throws org.codehaus.plexus.component.repository.exception.ComponentLookupException
Set.containsAll(Collection)
, except this method will throw a
ComponentLookupException
if one or more elements in the set fail during lookup.org.codehaus.plexus.component.repository.exception.ComponentLookupException
- if one or more elements of the set fail during lookup.Iterator checkedIterator() throws org.codehaus.plexus.component.repository.exception.ComponentLookupException
Set.iterator()
, except this method will throw a
ComponentLookupException
if one or more elements in the set fail during lookup.org.codehaus.plexus.component.repository.exception.ComponentLookupException
- if one or more elements of the set fail during lookup.Object[] checkedToArray() throws org.codehaus.plexus.component.repository.exception.ComponentLookupException
Set.toArray()
, except this method will throw a
ComponentLookupException
if one or more elements in the set fail during lookup.org.codehaus.plexus.component.repository.exception.ComponentLookupException
- if one or more elements of the set fail during lookup.Object[] checkedToArray(Object[] array) throws org.codehaus.plexus.component.repository.exception.ComponentLookupException
Set.toArray(Object[])
, except this method will throw a
ComponentLookupException
if one or more elements in the set fail during lookup.org.codehaus.plexus.component.repository.exception.ComponentLookupException
- if one or more elements of the set fail during lookup.Copyright © 2001–2013 Codehaus. All rights reserved.