Asn1Objectpublic abstract class Asn1Object extends Object
Fields Summary |
---|
protected int | _baseTag | protected int | _tagNumber | protected InputStream | _contentStream |
Constructors Summary |
---|
protected Asn1Object(int baseTag, int tagNumber, InputStream contentStream)
this._baseTag = baseTag;
this._tagNumber = tagNumber;
this._contentStream = contentStream;
|
Methods Summary |
---|
public java.io.InputStream | getRawContentStream()Return an input stream representing the content bytes of the object.
return _contentStream;
| public int | getTagNumber()Return the tag number for this object.
return _tagNumber;
| public boolean | isConstructed()Return true if this object is a constructed one.
return (_baseTag & BerTag.CONSTRUCTED) != 0;
|
|