Package org.bouncycastle.asn1
Class BERSetParser
- java.lang.Object
-
- org.bouncycastle.asn1.BERSetParser
-
- All Implemented Interfaces:
ASN1Encodable
,ASN1SetParser
,InMemoryRepresentable
public class BERSetParser extends java.lang.Object implements ASN1SetParser
Parser for indefinite-length SETs.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ASN1Primitive
getLoadedObject()
Return an in-memory, encodable, representation of the SET.ASN1Encodable
readObject()
Read the next object in the SET.ASN1Primitive
toASN1Primitive()
Return an BERSet representing this parser and its contents.
-
-
-
Method Detail
-
readObject
public ASN1Encodable readObject() throws java.io.IOException
Read the next object in the SET.- Specified by:
readObject
in interfaceASN1SetParser
- Returns:
- the next object in the SET, null if there are no more.
- Throws:
java.io.IOException
- if there is an issue reading the underlying stream.
-
getLoadedObject
public ASN1Primitive getLoadedObject() throws java.io.IOException
Return an in-memory, encodable, representation of the SET.- Specified by:
getLoadedObject
in interfaceInMemoryRepresentable
- Returns:
- a BERSet.
- Throws:
java.io.IOException
- if there is an issue loading the data.
-
toASN1Primitive
public ASN1Primitive toASN1Primitive()
Return an BERSet representing this parser and its contents.- Specified by:
toASN1Primitive
in interfaceASN1Encodable
- Returns:
- an BERSet
-
-