Package org.gudy.bouncycastle.asn1
Class DEREncodableVector
- java.lang.Object
-
- org.gudy.bouncycastle.asn1.DEREncodableVector
-
- Direct Known Subclasses:
ASN1EncodableVector
public class DEREncodableVector extends java.lang.Object
a general class for building up a vector of DER encodable objects - this will eventually be superceded by ASN1EncodableVector so you should use that class in preference.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Vector
v
-
Constructor Summary
Constructors Constructor Description DEREncodableVector()
Deprecated.use ASN1EncodableVector instead.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(DEREncodable obj)
DEREncodable
get(int i)
int
size()
-
-
-
Method Detail
-
add
public void add(DEREncodable obj)
-
get
public DEREncodable get(int i)
-
size
public int size()
-
-