Interface IASN1Sequence
-
- All Superinterfaces:
IASN1Encodable,IASN1Primitive
- All Known Subinterfaces:
IDERSequence
- All Known Implementing Classes:
ASN1SequenceBC,DERSequenceBC
public interface IASN1Sequence extends IASN1Primitive
This interface represents the wrapper for ASN1Sequence that provides the ability to switch between bouncy-castle and bouncy-castle FIPS implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IASN1EncodablegetObjectAt(int i)Calls actualgetObjectAtmethod for the wrapped ASN1Sequence object.java.util.EnumerationgetObjects()Calls actualgetObjectsmethod for the wrapped ASN1Sequence object.intsize()Calls actualsizemethod for the wrapped ASN1Sequence object.IASN1Encodable[]toArray()Calls actualtoArraymethod 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 Detail
-
getObjectAt
IASN1Encodable getObjectAt(int i)
Calls actualgetObjectAtmethod for the wrapped ASN1Sequence object.- Parameters:
i- index- Returns:
IASN1Encodablewrapped ASN1Encodable object.
-
getObjects
java.util.Enumeration getObjects()
Calls actualgetObjectsmethod for the wrapped ASN1Sequence object.- Returns:
- received objects.
-
size
int size()
Calls actualsizemethod for the wrapped ASN1Sequence object.- Returns:
- sequence size.
-
toArray
IASN1Encodable[] toArray()
Calls actualtoArraymethod for the wrapped ASN1Sequence object.- Returns:
- array of wrapped ASN1Encodable objects.
-
-