See: Description
Interface | Description |
---|---|
Parser<T> |
A Parser provides methods to translate a String to a T.
|
Class | Description |
---|---|
Parsed<T> |
The return type of Parser.parse(String,int) methods.
|
ParserFactory |
Defines static methods to create parsers for particular types.
|
Creates parsers for ASN.1 value notation. For a type T, generated by CGIN from an ASN.1 type specification, a parser for values of type T can be constructed and used as follows.
Parser<T> parser = ParserFactory.forClass(T.class); T parsedObject = parser.parse("...some ASN.1 value notation...");