Package | Description |
---|---|
java.security | |
java.security.cert | |
java.util | |
java.util.jar | |
org.apache.harmony.luni.util |
Modifier and Type | Method and Description |
---|---|
Collection |
Provider.values() |
Modifier and Type | Method and Description |
---|---|
abstract Collection |
CertificateFactorySpi.engineGenerateCertificates(InputStream inStream) |
abstract Collection |
CertificateFactorySpi.engineGenerateCRLs(InputStream inStream) |
abstract Collection |
CertStoreSpi.engineGetCertificates(CertSelector selector)
Get the certificates from this store, filtering them through the
specified CertSelector.
|
abstract Collection |
CertStoreSpi.engineGetCRLs(CRLSelector selector)
Get the certificate revocation list from this store, filtering them
through the specified CRLSelector.
|
Collection |
CertificateFactory.generateCertificates(InputStream in) |
Collection |
CertificateFactory.generateCRLs(InputStream in) |
Collection |
CertStore.getCertificates(CertSelector selector)
Get a collection of certificates from this CertStore, optionally
filtered by the specified CertSelector.
|
Collection |
CollectionCertStoreParameters.getCollection()
Return the underlying collection.
|
Collection |
CertStore.getCRLs(CRLSelector selector)
Get a collection of certificate revocation lists from this CertStore,
optionally filtered by the specified CRLSelector.
|
Collection |
X509Certificate.getIssuerAlternativeNames() |
Collection |
X509CRLSelector.getIssuerNames()
Returns the set of issuer names that are matched by this selector,
or
null if this criteria is not set. |
Collection |
X509CertSelector.getPathToNames() |
Collection |
X509CertSelector.getSubjectAlternativeNames() |
Collection |
X509Certificate.getSubjectAlternativeNames() |
Modifier and Type | Method and Description |
---|---|
abstract void |
PKIXCertPathChecker.check(Certificate cert,
Collection unresolvedCritExts)
Checks a certificate, removing any critical extensions that are
resolved in this check.
|
void |
X509CRLSelector.setIssuerNames(Collection names)
Sets the issuer names criterion.
|
void |
X509CertSelector.setPathToNames(Collection names) |
void |
X509CertSelector.setSubjectAlternativeNames(Collection altNames)
Sets the subject alternative names critertion.
|
Constructor and Description |
---|
CollectionCertStoreParameters(Collection collection)
Create a new CollectionCertStoreParameters with the specified
collection.
|
Modifier and Type | Interface and Description |
---|---|
interface |
List |
interface |
Set |
interface |
SortedSet |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCollection
Class
AbstractCollection is an abstract implementation of the Collection interface. |
class |
AbstractList
AbstractList is an abstract implementation of the List interface, optimized
for a backing store which supports random access. |
class |
AbstractSequentialList
AbstractSequentialList is an abstract implementation of the List interface.
|
class |
AbstractSet
An AbstractSet is an abstract implementation of the Set interface.
|
class |
ArrayList
ArrayList is an implementation of
List , backed by an array. |
class |
HashSet
HashSet is an implementation of a Set.
|
class |
LinkedHashSet
LinkedHashSet is a variant of HashSet.
|
class |
LinkedList |
class |
Stack
Stack is an implementation of a LIFO (last in, first out) queue on top of a Vector
|
class |
TreeSet |
class |
Vector |
Modifier and Type | Method and Description |
---|---|
static Collection |
Collections.synchronizedCollection(Collection collection)
Returns a wrapper on the specified collection which synchronizes all
access to the collection.
|
static Collection |
Collections.unmodifiableCollection(Collection collection)
Returns a wrapper on the specified collection which throws an
UnsupportedOperationException whenever an attempt is made to
modify the collection. |
Collection |
AbstractMap.values()
Returns a collection of the values contained in this map.
|
Collection |
HashMap.values()
Returns a collection of the values contained in this map.
|
Collection |
Hashtable.values()
Returns a collection of the values contained in this
Hashtable . |
Collection |
IdentityHashMap.values()
Returns a collection of the values contained in this map.
|
Collection |
LinkedHashMap.values()
Returns a collection of the values contained in this map.
|
Collection |
Map.values() |
Collection |
TreeMap.values() |
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractCollection.addAll(Collection collection)
Attempts to add all of the objects contained in
collection
to the contents of this Collection (optional). |
boolean |
ArrayList.addAll(Collection collection)
Adds the objects in the specified collection to this
ArrayList . |
boolean |
Collection.addAll(Collection c) |
boolean |
LinkedList.addAll(Collection c) |
boolean |
List.addAll(Collection c) |
boolean |
Set.addAll(Collection c) |
boolean |
Vector.addAll(Collection c)
calls addAll from AbstractList
|
boolean |
AbstractList.addAll(int location,
Collection collection)
Inserts the objects in the specified Collection at the specified location
in this List.
|
boolean |
AbstractSequentialList.addAll(int location,
Collection collection) |
boolean |
ArrayList.addAll(int location,
Collection collection)
Inserts the objects in the specified collection at the specified location
in this List.
|
boolean |
LinkedList.addAll(int idx,
Collection c) |
boolean |
List.addAll(int index,
Collection c) |
boolean |
Vector.addAll(int idx,
Collection c) |
boolean |
AbstractCollection.containsAll(Collection collection)
Tests whether this
Collection contains all objects contained in the
specified Collection . |
boolean |
Collection.containsAll(Collection c) |
boolean |
List.containsAll(Collection c) |
boolean |
Set.containsAll(Collection c) |
boolean |
Vector.containsAll(Collection c) |
static Enumeration |
Collections.enumeration(Collection collection)
Returns an
Enumeration on the specified collection. |
static Object |
Collections.max(Collection collection)
Searches the specified collection for the maximum element.
|
static Object |
Collections.max(Collection collection,
Comparator comparator)
Searches the specified collection for the maximum element using the
specified comparator.
|
static Object |
Collections.min(Collection collection)
Searches the specified collection for the minimum element.
|
static Object |
Collections.min(Collection collection,
Comparator comparator)
Searches the specified collection for the minimum element using the
specified comparator.
|
boolean |
AbstractCollection.removeAll(Collection collection)
Removes all occurrences in this
Collection of each object in the
specified Collection (optional). |
boolean |
AbstractSet.removeAll(Collection collection)
Removes all occurrences in this collection which are contained in the
specified collection.
|
boolean |
Collection.removeAll(Collection c) |
boolean |
List.removeAll(Collection c) |
boolean |
Set.removeAll(Collection c) |
boolean |
Vector.removeAll(Collection c) |
boolean |
AbstractCollection.retainAll(Collection collection)
Removes all objects from this
Collection that are not also found in the
Collection passed (optional). |
boolean |
Collection.retainAll(Collection c) |
boolean |
List.retainAll(Collection c) |
boolean |
Set.retainAll(Collection c) |
boolean |
Vector.retainAll(Collection c) |
static Collection |
Collections.synchronizedCollection(Collection collection)
Returns a wrapper on the specified collection which synchronizes all
access to the collection.
|
static Collection |
Collections.unmodifiableCollection(Collection collection)
Returns a wrapper on the specified collection which throws an
UnsupportedOperationException whenever an attempt is made to
modify the collection. |
Constructor and Description |
---|
ArrayList(Collection collection)
Constructs a new instance of
ArrayList containing the elements of
the specified collection. |
HashSet(Collection collection)
Constructs a new instance of
HashSet containing the unique
elements in the specified collection. |
LinkedHashSet(Collection collection)
Constructs a new instance of
LinkedHashSet containing the unique
elements in the specified collection. |
LinkedList(Collection c) |
TreeSet(Collection c) |
Vector(Collection c) |
Modifier and Type | Method and Description |
---|---|
Collection |
Attributes.values()
Returns a Collection of all the values present in this Attributes.
|
Modifier and Type | Method and Description |
---|---|
Collection |
TwoKeyHashMap.values()
Returns a collection view of the values
|