Package | Description |
---|---|
java.security | |
java.security.cert | |
java.text | |
java.util | |
java.util.jar | |
org.apache.harmony.luni.util |
Modifier and Type | Method and Description |
---|---|
Set |
Provider.entrySet() |
static Set |
Security.getAlgorithms(String serviceName) |
Set |
Provider.keySet() |
Modifier and Type | Method and Description |
---|---|
Set |
X509Extension.getCriticalExtensionOIDs() |
Set |
PolicyNode.getExpectedPolicies()
Returns a set of policies (string OIDs) that will satisfy this
node's policy.
|
Set |
X509CertSelector.getExtendedKeyUsage()
Returns the set of extended key purpose IDs, as an unmodifiable set
of OID strings.
|
Set |
PKIXParameters.getInitialPolicies()
Returns the set of initial policy identifiers (as OID strings).
|
Set |
X509Extension.getNonCriticalExtensionOIDs() |
Set |
X509CertSelector.getPolicy() |
Set |
PolicyNode.getPolicyQualifiers()
Returns a set of
PolicyQualifierInfo objects that qualify
the valid policy of this node. |
abstract Set |
X509CRL.getRevokedCertificates() |
abstract Set |
PKIXCertPathChecker.getSupportedExtensions()
Returns an immutable set of X.509 extension object identifiers (OIDs)
supported by this PKIXCertPathChecker.
|
Set |
PKIXParameters.getTrustAnchors()
Returns an immutable set of trust anchors.
|
Modifier and Type | Method and Description |
---|---|
void |
X509CertSelector.setExtendedKeyUsage(Set keyPurposeSet)
Sets the extended key usage criterion, as a set of OID strings.
|
void |
PKIXParameters.setInitialPolicies(Set initPolicies)
Sets the initial policy identifiers (as OID strings).
|
void |
X509CertSelector.setPolicy(Set policy) |
void |
PKIXParameters.setTrustAnchors(Set trustAnchors)
Sets the trust anchors of this class, replacing the current trust
anchors with those in the given set.
|
Constructor and Description |
---|
PKIXBuilderParameters(Set trustAnchors,
CertSelector targetConstraints)
Create a new PKIXBuilderParameters object, populating the trusted
certificates set with the elements of the given set, each of which
must be a
TrustAnchor . |
PKIXParameters(Set trustAnchors)
Create a new PKIXParameters object, populating the trusted
certificates set with the elements of the given set, each of which
must be a
TrustAnchor . |
Modifier and Type | Method and Description |
---|---|
Set |
AttributedCharacterIterator.getAllAttributeKeys() |
Modifier and Type | Method and Description |
---|---|
int |
AttributedCharacterIterator.getRunLimit(Set attributes) |
int |
AttributedCharacterIterator.getRunStart(Set attributes) |
Modifier and Type | Interface and Description |
---|---|
interface |
SortedSet |
Modifier and Type | Class and Description |
---|---|
class |
AbstractSet
An AbstractSet is an abstract implementation of the Set interface.
|
class |
HashSet
HashSet is an implementation of a Set.
|
class |
LinkedHashSet
LinkedHashSet is a variant of HashSet.
|
class |
TreeSet |
Modifier and Type | Field and Description |
---|---|
static Set |
Collections.EMPTY_SET
An empty immutable instance of
Set . |
Modifier and Type | Method and Description |
---|---|
abstract Set |
AbstractMap.entrySet()
Returns a set containing all of the mappings in this map.
|
Set |
HashMap.entrySet()
Returns a set containing all of the mappings in this map.
|
Set |
Hashtable.entrySet()
Returns a set of the mappings contained in this
Hashtable . |
Set |
IdentityHashMap.entrySet()
Returns a set containing all of the mappings in this map.
|
Set |
LinkedHashMap.entrySet()
Returns a set containing all of the mappings in this map.
|
Set |
Map.entrySet() |
Set |
TreeMap.entrySet() |
Set |
WeakHashMap.entrySet() |
Set |
AbstractMap.keySet()
Returns a set of the keys contained in this map.
|
Set |
HashMap.keySet()
Returns a set of the keys contained in this map.
|
Set |
Hashtable.keySet()
Returns a set of the keys contained in this
Hashtable . |
Set |
IdentityHashMap.keySet()
Returns a set of the keys contained in this map.
|
Set |
LinkedHashMap.keySet()
Returns a set of the keys contained in this map.
|
Set |
Map.keySet() |
Set |
TreeMap.keySet() |
static Set |
Collections.singleton(Object object)
Returns a set containing the specified element.
|
static Set |
Collections.synchronizedSet(Set set)
Returns a wrapper on the specified set which synchronizes all access to
the set.
|
static Set |
Collections.unmodifiableSet(Set set)
Returns a wrapper on the specified set which throws an
UnsupportedOperationException whenever an attempt is made to
modify the set. |
Modifier and Type | Method and Description |
---|---|
static Set |
Collections.synchronizedSet(Set set)
Returns a wrapper on the specified set which synchronizes all access to
the set.
|
static Set |
Collections.unmodifiableSet(Set set)
Returns a wrapper on the specified set which throws an
UnsupportedOperationException whenever an attempt is made to
modify the set. |
Modifier and Type | Method and Description |
---|---|
Set |
Attributes.entrySet()
Returns a set containing MapEntry's for each of the key/value pairs
contained in this Attributes.
|
Set |
Attributes.keySet()
Returns a Set containing all the keys found in this Attributes.
|
Modifier and Type | Method and Description |
---|---|
Set |
TwoKeyHashMap.entrySet()
Returns a collection view of the mappings
|