Interface IASN1Set
- All Superinterfaces:
-
IASN1Encodable
,IASN1Primitive
- All Known Subinterfaces:
-
IDERSet
- All Known Implementing Classes:
-
ASN1SetBC
,ASN1SetBCFips
,DERSetBC
,DERSetBCFips
This interface represents the wrapper for ASN1Set that provides the ability to switch between bouncy-castle and bouncy-castle FIPS implementations.
-
Method Summary
Modifier and TypeMethodDescriptiongetObjectAt
(int index) Calls actualgetObjectAt
method for the wrapped ASN1Set object.Calls actualgetObjects
method for the wrapped ASN1Set object.int
size()
Calls actualsize
method for the wrapped ASN1Set object.toArray()
Calls actualtoArray
method for the wrapped ASN1Set object.Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Encodable
isNull, toASN1Primitive
Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Primitive
getEncoded, getEncoded
-
Method Details
-
getObjects
Enumeration getObjects()Calls actualgetObjects
method for the wrapped ASN1Set object.- Returns:
- received objects.
-
size
int size()Calls actualsize
method for the wrapped ASN1Set object.- Returns:
- set size.
-
getObjectAt
Calls actualgetObjectAt
method for the wrapped ASN1Set object.- Parameters:
-
index
- index - Returns:
-
IASN1Encodable
wrapped ASN1Encodable object.
-
toArray
IASN1Encodable[] toArray()Calls actualtoArray
method for the wrapped ASN1Set object.- Returns:
- array of wrapped ASN1Encodable objects.
-