Interface IASN1Sequence
- All Superinterfaces:
-
IASN1Encodable
,IASN1Primitive
- All Known Subinterfaces:
-
IDERSequence
- All Known Implementing Classes:
-
ASN1SequenceBC
,ASN1SequenceBCFips
,DERSequenceBC
,DERSequenceBCFips
This interface represents the wrapper for ASN1Sequence that provides the ability to switch between bouncy-castle and bouncy-castle FIPS implementations.
-
Method Summary
Modifier and TypeMethodDescriptiongetObjectAt
(int i) Calls actualgetObjectAt
method for the wrapped ASN1Sequence object.Calls actualgetObjects
method for the wrapped ASN1Sequence object.int
size()
Calls actualsize
method for the wrapped ASN1Sequence object.toArray()
Calls actualtoArray
method for the wrapped ASN1Sequence 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
-
getObjectAt
Calls actualgetObjectAt
method for the wrapped ASN1Sequence object.- Parameters:
-
i
- index - Returns:
-
IASN1Encodable
wrapped ASN1Encodable object.
-
getObjects
Enumeration getObjects()Calls actualgetObjects
method for the wrapped ASN1Sequence object.- Returns:
- received objects.
-
size
int size()Calls actualsize
method for the wrapped ASN1Sequence object.- Returns:
- sequence size.
-
toArray
IASN1Encodable[] toArray()Calls actualtoArray
method for the wrapped ASN1Sequence object.- Returns:
- array of wrapped ASN1Encodable objects.
-