Package org.bouncycastle.asn1
Class ASN1EncodableVector
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1EncodableVector
-
public class ASN1EncodableVector extends java.lang.ObjectMutable class for building ASN.1 constructed objects such as SETs or SEQUENCEs.
-
-
Constructor Summary
Constructors Constructor Description ASN1EncodableVector()ASN1EncodableVector(int initialCapacity)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(ASN1Encodable element)voidaddAll(ASN1EncodableVector other)ASN1Encodableget(int i)Return the object at position i in this vector.intsize()Return the size of the vector.
-
-
-
Method Detail
-
add
public void add(ASN1Encodable element)
-
addAll
public void addAll(ASN1EncodableVector other)
-
get
public ASN1Encodable get(int i)
Return the object at position i in this vector.- Parameters:
i- the index of the object of interest.- Returns:
- the object at position i.
-
size
public int size()
Return the size of the vector.- Returns:
- the object count in the vector.
-
-