Interface IASN1Set
-
- All Superinterfaces:
IASN1Encodable,IASN1Primitive
- All Known Subinterfaces:
IDERSet
public interface IASN1Set extends IASN1Primitive
This interface represents the wrapper for ASN1Set 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 index)Calls actualgetObjectAtmethod for the wrapped ASN1Set object.java.util.EnumerationgetObjects()Calls actualgetObjectsmethod for the wrapped ASN1Set object.intsize()Calls actualsizemethod for the wrapped ASN1Set object.IASN1Encodable[]toArray()Calls actualtoArraymethod 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 Detail
-
getObjects
java.util.Enumeration getObjects()
Calls actualgetObjectsmethod for the wrapped ASN1Set object.- Returns:
- received objects.
-
size
int size()
Calls actualsizemethod for the wrapped ASN1Set object.- Returns:
- set size.
-
getObjectAt
IASN1Encodable getObjectAt(int index)
Calls actualgetObjectAtmethod for the wrapped ASN1Set object.- Parameters:
index- index- Returns:
IASN1Encodablewrapped ASN1Encodable object.
-
toArray
IASN1Encodable[] toArray()
Calls actualtoArraymethod for the wrapped ASN1Set object.- Returns:
- array of wrapped ASN1Encodable objects.
-
-