Uses of Interface
net.sf.jbaobab.io.Seperator

Packages that use Seperator
net.sf.jbaobab.helper Contains helper classes. 
net.sf.jbaobab.io Contains core interfaces and implementations of JBaobab framework. 
net.sf.jbaobab.io.impl Contains rough implementations of some wide-spread protocols. 
 

Uses of Seperator in net.sf.jbaobab.helper
 

Classes in net.sf.jbaobab.helper that implement Seperator
static class ProtocolHelper.PackedProtocolImpl<P>
           A Protocol that delegates operations to Seperator and Translator.
 

Methods in net.sf.jbaobab.helper with parameters of type Seperator
static Protocol<ByteBuffer> ProtocolHelper.pack(Seperator seperator)
           
static
<P> Protocol<P>
ProtocolHelper.pack(Seperator seperator, Translator<P> translator)
           
 

Uses of Seperator in net.sf.jbaobab.io
 

Subinterfaces of Seperator in net.sf.jbaobab.io
 interface Protocol<P>
           An interface that implements bott Seperator and Translator.
 

Classes in net.sf.jbaobab.io that implement Seperator
 class AbstractSeperator
           An abstract base implementation of Seperator interface, including AbstractSeperator.seperate(ByteBuffer) method.
 

Uses of Seperator in net.sf.jbaobab.io.impl
 

Classes in net.sf.jbaobab.io.impl that implement Seperator
 class ByteArraySeperator
           A Seperator that takes byte array as delimeter.
 class CRLFSeperator
           A Seperator that takes CRLF/LF as delimeter.
 class FixedLengthSeperator
           A Seperator that seperates incoming bytes with given byte length.
 class RoughHttpProtocol
           A Protocol that implements HTTP/1.0 very roughly.