Parsing Engine

Uses of Interface
danbikel.switchboard.ObjectReader

Packages that use ObjectReader
danbikel.parser Provides the core framework of this extensible statistical parsing engine. 
danbikel.switchboard Provides classes to implement a distributed client-server environment, with a central switchboard responsible for assigning clients to servers and for doling out objects to clients for processing. 
 

Uses of ObjectReader in danbikel.parser
 

Classes in danbikel.parser that implement ObjectReader
 class SexpNumberedObjectReader
          Reads an underlying stream with a SexpTokenizer, converting S-expressions of the form (num processed obj), where obj is a Sexp and processed is a Symbol whose print-name is the output of String.valueOf(boolean), to NumberedObject objects.
 class SexpObjectReader
          Reads an underlying stream with a SexpTokenizer, reading each S-expression as a object and returning it when SexpObjectReader.readObject() is invoked.
 

Methods in danbikel.parser that return ObjectReader
 ObjectReader SexpNumberedObjectReaderFactory.get(InputStream in)
          Returns a new SexpNumberedObjectReader constructed with the specified input stream argument.
 ObjectReader SexpObjectReaderFactory.get(InputStream in)
          Returns a new SexpObjectReader constructed with the specified input stream argument.
 ObjectReader SexpNumberedObjectReaderFactory.get(InputStream in, String encoding, int bufSize)
          Returns a new SexpNumberedObjectReader constructed with the specified arguments.
 ObjectReader SexpObjectReaderFactory.get(InputStream in, String encoding, int bufSize)
          Returns a new SexpObjectReader constructed with the specified arguments.
 ObjectReader SexpNumberedObjectReaderFactory.get(String filename, String encoding, int bufSize)
          Returns a new SexpNumberedObjectReader constructed with the specified arguments.
 ObjectReader SexpObjectReaderFactory.get(String filename, String encoding, int bufSize)
          Returns a new SexpObjectReader constructed with the specified arguments.
 

Uses of ObjectReader in danbikel.switchboard
 

Methods in danbikel.switchboard that return ObjectReader
 ObjectReader ObjectReaderFactory.get(InputStream in)
          Gets a new object reader for the specified input stream, using a default character encoding and buffer size, if applicable.
 ObjectReader ObjectReaderFactory.get(InputStream in, String encoding, int bufSize)
          Gets a new object reader for the specified input stream.
 ObjectReader ObjectReaderFactory.get(String filename, String encoding, int bufSize)
          Gets a new object reader for the specified filename.
 


Parsing Engine

Author: Dan Bikel.