Package org.bouncycastle.asn1
Interface ASN1SequenceParser
- 
- All Superinterfaces:
 ASN1Encodable,InMemoryRepresentable
- All Known Implementing Classes:
 BERSequenceParser,DLSequenceParser
public interface ASN1SequenceParser extends ASN1Encodable, InMemoryRepresentable
A basic parser for a SEQUENCE object 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ASN1EncodablereadObject()Read the next object from the underlying object representing a SEQUENCE.- 
Methods inherited from interface org.bouncycastle.asn1.ASN1Encodable
toASN1Primitive 
- 
Methods inherited from interface org.bouncycastle.asn1.InMemoryRepresentable
getLoadedObject 
 - 
 
 - 
 
- 
- 
Method Detail
- 
readObject
ASN1Encodable readObject() throws java.io.IOException
Read the next object from the underlying object representing a SEQUENCE.- Returns:
 - the next object, null if we are at the end.
 - Throws:
 java.io.IOException- for bad input stream.
 
 - 
 
 -