Uses of Class
org.apache.mina.filter.codec.textline.LineDelimiter
Packages that use LineDelimiter
Package
Description
A protocol codec for text-based protocols.
-
Uses of LineDelimiter in org.apache.mina.filter.codec.textline
Fields in org.apache.mina.filter.codec.textline declared as LineDelimiterModifier and TypeFieldDescriptionstatic final LineDelimiterLineDelimiter.AUTOA special line delimiter which is used for auto-detection of EOL inTextLineDecoder.static final LineDelimiterLineDelimiter.CRLFThe CRLF line delimiter constant ("\r\n")static final LineDelimiterLineDelimiter.DEFAULTthe line delimiter constant of the current O/S.private final LineDelimiterTextLineDecoder.delimiterThe delimiter used to determinate when a line has been fully decodedprivate final LineDelimiterTextLineEncoder.delimiterstatic final LineDelimiterLineDelimiter.MACThe line delimiter constant of Mac OS ("\r")static final LineDelimiterLineDelimiter.NULThe line delimiter constant for NUL-terminated text protocols such as Flash XML socket ("\0")static final LineDelimiterLineDelimiter.UNIXThe line delimiter constant of UNIX ("\n")static final LineDelimiterLineDelimiter.WINDOWSThe line delimiter constant of MS Windows/DOS ("\r\n")Constructors in org.apache.mina.filter.codec.textline with parameters of type LineDelimiterModifierConstructorDescriptionTextLineCodecFactory(Charset charset, LineDelimiter encodingDelimiter, LineDelimiter decodingDelimiter) Creates a new instance of TextLineCodecFactory.TextLineDecoder(Charset charset, LineDelimiter delimiter) Creates a new instance with the specifiedcharsetand the specifieddelimiter.TextLineDecoder(LineDelimiter delimiter) Creates a new instance with the current defaultCharsetand the specifieddelimiter.TextLineEncoder(Charset charset, LineDelimiter delimiter) Creates a new instance with the specifiedcharsetand the specifieddelimiter.TextLineEncoder(LineDelimiter delimiter) Creates a new instance with the current defaultCharsetand the specifieddelimiter.