1 package org.bouncycastle.util;
2 
3 import java.util.Collection;
4 
5 public interface StreamParser
6 {
read()7     Object read() throws StreamParsingException;
8 
readAll()9     Collection readAll() throws StreamParsingException;
10 }
11