Uses of Interface
java.util.Collection

Packages that use Collection
java.security   
java.security.cert   
java.util   
java.util.jar   
org.apache.felix.framework.util   
org.apache.felix.ipojo.handler.temporal   
org.apache.felix.ipojo.handlers.dependency   
org.apache.felix.prefs   
org.apache.felix.scr.impl.helper   
org.apache.felix.servicebinder   
org.apache.felix.upnp.basedriver.export   
org.apache.felix.upnp.tester.discovery   
org.osgi.framework.hooks.service Framework Service Hooks Package Version 1.0. 
org.osgi.service.blueprint.container Blueprint Container Package Version 1.0. 
org.osgi.service.blueprint.reflect Blueprint Reflection Package Version 1.0. 
 

Uses of Collection in java.security
 

Methods in java.security that return Collection
 Collection Provider.values()
           
 

Uses of Collection in java.security.cert
 

Methods in java.security.cert that return Collection
abstract  Collection CertificateFactorySpi.engineGenerateCertificates(InputStream var0)
           
abstract  Collection CertificateFactorySpi.engineGenerateCRLs(InputStream var0)
           
 Collection CertificateFactory.generateCertificates(InputStream var0)
           
 Collection CertificateFactory.generateCRLs(InputStream var0)
           
 

Uses of Collection in java.util
 

Subinterfaces of Collection in java.util
 interface List
           
 interface Set
           
 interface SortedSet
           
 

Classes in java.util that implement Collection
 class AbstractCollection
           
 class AbstractList
           
 class AbstractSequentialList
           
 class AbstractSet
           
 class ArrayList
           
 class HashSet
           
 class LinkedList
           
 class Stack
           
 class TreeSet
           
 class Vector
           
 

Methods in java.util that return Collection
static Collection Collections.synchronizedCollection(Collection var0)
           
static Collection Collections.unmodifiableCollection(Collection var0)
           
 Collection TreeMap.values()
           
 Collection Map.values()
           
 Collection Hashtable.values()
           
 Collection HashMap.values()
           
 Collection AbstractMap.values()
           
 

Methods in java.util with parameters of type Collection
 boolean Vector.addAll(Collection var0)
           
 boolean TreeSet.addAll(Collection var0)
           
 boolean Set.addAll(Collection var0)
           
 boolean List.addAll(Collection var0)
           
 boolean LinkedList.addAll(Collection var0)
           
 boolean Collection.addAll(Collection var0)
           
 boolean ArrayList.addAll(Collection var0)
           
 boolean AbstractCollection.addAll(Collection var0)
           
 boolean Vector.addAll(int var0, Collection var1)
           
 boolean List.addAll(int var0, Collection var1)
           
 boolean LinkedList.addAll(int var0, Collection var1)
           
 boolean ArrayList.addAll(int var0, Collection var1)
           
 boolean AbstractSequentialList.addAll(int var0, Collection var1)
           
 boolean AbstractList.addAll(int var0, Collection var1)
           
 boolean Vector.containsAll(Collection var0)
           
 boolean Set.containsAll(Collection var0)
           
 boolean List.containsAll(Collection var0)
           
 boolean Collection.containsAll(Collection var0)
           
 boolean AbstractCollection.containsAll(Collection var0)
           
static Enumeration Collections.enumeration(Collection var0)
           
static Object Collections.max(Collection var0)
           
static Object Collections.max(Collection var0, Comparator var1)
           
static Object Collections.min(Collection var0)
           
static Object Collections.min(Collection var0, Comparator var1)
           
 boolean Vector.removeAll(Collection var0)
           
 boolean Set.removeAll(Collection var0)
           
 boolean List.removeAll(Collection var0)
           
 boolean Collection.removeAll(Collection var0)
           
 boolean AbstractSet.removeAll(Collection var0)
           
 boolean AbstractCollection.removeAll(Collection var0)
           
 boolean Vector.retainAll(Collection var0)
           
 boolean Set.retainAll(Collection var0)
           
 boolean List.retainAll(Collection var0)
           
 boolean Collection.retainAll(Collection var0)
           
 boolean AbstractCollection.retainAll(Collection var0)
           
static Collection Collections.synchronizedCollection(Collection var0)
           
static Collection Collections.unmodifiableCollection(Collection var0)
           
 

Constructors in java.util with parameters of type Collection
ArrayList(Collection var0)
           
HashSet(Collection var0)
           
LinkedList(Collection var0)
           
TreeSet(Collection var0)
           
Vector(Collection var0)
           
 

Uses of Collection in java.util.jar
 

Methods in java.util.jar that return Collection
 Collection Attributes.values()
           
 

Uses of Collection in org.apache.felix.framework.util
 

Classes in org.apache.felix.framework.util that implement Collection
 class ShrinkableCollection
          This collection wraps any other collection but prohibits calls to add elements to the collection.
 

Methods in org.apache.felix.framework.util that return Collection
 Collection StringMap.values()
           
 Collection EventDispatcher.wrapAllServiceListeners(boolean removed)
          Returns all existing service listener information into a collection of ListenerHook.ListenerInfo objects.
 

Methods in org.apache.felix.framework.util with parameters of type Collection
 boolean ShrinkableCollection.addAll(Collection c)
           
 boolean ShrinkableCollection.containsAll(Collection c)
           
 boolean ShrinkableCollection.removeAll(Collection c)
           
 boolean ShrinkableCollection.retainAll(Collection c)
           
 

Constructors in org.apache.felix.framework.util with parameters of type Collection
ShrinkableCollection(Collection delegate)
           
 

Uses of Collection in org.apache.felix.ipojo.handler.temporal
 

Methods in org.apache.felix.ipojo.handler.temporal with parameters of type Collection
 boolean ServiceCollection.addAll(Collection c)
          Unsupported method.
 boolean ServiceCollection.containsAll(Collection c)
          Checks if the wrapped temporal dependencies has always access to the given service objects.The method allows knowing if providers returning the service objects have leaved.
 boolean ServiceCollection.removeAll(Collection c)
          Unsupported method.
 boolean ServiceCollection.retainAll(Collection c)
          Unsupported method.
 

Uses of Collection in org.apache.felix.ipojo.handlers.dependency
 

Classes in org.apache.felix.ipojo.handlers.dependency that implement Collection
 class ServiceCollection
          Maintains a service object collection.
 

Methods in org.apache.felix.ipojo.handlers.dependency with parameters of type Collection
 boolean ServiceCollection.addAll(Collection c)
          Unsupported method.
 boolean ServiceCollection.addAll(int index, Collection c)
          Unsupported method.
 boolean ServiceCollection.containsAll(Collection c)
          Checks if the wrapped dependencies has always access to the given service objects.The method allows knowing if providers returning the service objects have left.
 boolean ServiceCollection.removeAll(Collection c)
          Unsupported method.
 boolean ServiceCollection.retainAll(Collection c)
          Unsupported method.
 

Uses of Collection in org.apache.felix.prefs
 

Methods in org.apache.felix.prefs that return Collection
 Collection ChangeSet.getAddedChildren()
          Return a collection with the added children names.
 Collection ChangeSet.getChangedProperties()
          Return a collection with the changed property names.
 Collection PreferencesImpl.getChildren()
          Return all children or an empty collection.
 Collection ChangeSet.getRemovedChildren()
          Return a collection with the removed children names.
 Collection ChangeSet.getRemovedProperties()
          Return a collection with the removed property names.
 

Uses of Collection in org.apache.felix.scr.impl.helper
 

Methods in org.apache.felix.scr.impl.helper that return Collection
 Collection ReadOnlyDictionary.values()
           
 

Uses of Collection in org.apache.felix.servicebinder
 

Methods in org.apache.felix.servicebinder that return Collection
 Collection InstanceMetadata.getDependencies()
          Returns the dependency descriptors
 

Uses of Collection in org.apache.felix.upnp.basedriver.export
 

Methods in org.apache.felix.upnp.basedriver.export that return Collection
 Collection DeviceNode.getAllChildren()
           
 Collection DeviceNode.getChildren()
           
 

Uses of Collection in org.apache.felix.upnp.tester.discovery
 

Methods in org.apache.felix.upnp.tester.discovery that return Collection
 Collection DeviceNode.getAllChildren()
           
 Collection DeviceNode.getChildren()
           
 

Uses of Collection in org.osgi.framework.hooks.service
 

Methods in org.osgi.framework.hooks.service with parameters of type Collection
 void ListenerHook.added(Collection listeners)
          Added listeners hook method.
 void EventHook.event(ServiceEvent event, Collection contexts)
          Event hook method.
 void FindHook.find(BundleContext context, String name, String filter, boolean allServices, Collection references)
          Find hook method.
 void ListenerHook.removed(Collection listeners)
          Removed listeners hook method.
 

Uses of Collection in org.osgi.service.blueprint.container
 

Methods in org.osgi.service.blueprint.container that return Collection
 Collection BlueprintContainer.getMetadata(Class type)
          Return all ComponentMetadata objects of the specified Component Metadata type.
 

Uses of Collection in org.osgi.service.blueprint.reflect
 

Methods in org.osgi.service.blueprint.reflect that return Collection
 Collection ServiceReferenceMetadata.getReferenceListeners()
          Return the reference listeners to receive bind and unbind events.
 Collection ServiceMetadata.getRegistrationListeners()
          Return the registration listeners to be notified when the service is registered and unregistered with the framework.
 



Copyright © 2011 Apache Software Foundation. All Rights Reserved.