Uses of Class
org.apache.james.mime4j.stream.ParserCursor

Packages that use ParserCursor
org.apache.james.mime4j.field.address   
org.apache.james.mime4j.stream   
 

Uses of ParserCursor in org.apache.james.mime4j.field.address
 

Methods in org.apache.james.mime4j.field.address with parameters of type ParserCursor
 Address LenientAddressBuilder.parseAddress(ByteSequence buf, ParserCursor cursor, java.util.BitSet delimiters)
           
 AddressList LenientAddressBuilder.parseAddressList(ByteSequence buf, ParserCursor cursor)
           
 Group LenientAddressBuilder.parseGroup(ByteSequence buf, ParserCursor cursor)
           
 Mailbox LenientAddressBuilder.parseMailbox(ByteSequence buf, ParserCursor cursor, java.util.BitSet delimiters)
           
 

Uses of ParserCursor in org.apache.james.mime4j.stream
 

Methods in org.apache.james.mime4j.stream with parameters of type ParserCursor
 void RawFieldParser.copyContent(ByteSequence buf, ParserCursor cursor, java.util.BitSet delimiters, java.lang.StringBuilder dst)
          Transfers content into the destination buffer until a whitespace character, a comment, or any of the given delimiters is encountered.
 void RawFieldParser.copyQuotedContent(ByteSequence buf, ParserCursor cursor, java.lang.StringBuilder dst)
          Transfers content enclosed with quote marks into the destination buffer.
 NameValuePair RawFieldParser.parseParameter(ByteSequence buf, ParserCursor cursor)
          Parses the sequence of bytes containing a field parameter delimited with semicolon into NameValuePair.
 java.util.List<NameValuePair> RawFieldParser.parseParameters(ByteSequence buf, ParserCursor cursor)
          Parses the sequence of bytes containing field parameters delimited with semicolon into a list of NameValuePairs.
 RawBody RawFieldParser.parseRawBody(ByteSequence buf, ParserCursor cursor)
          Parses the sequence of bytes containing a value with parameters into RawBody.
 java.lang.String RawFieldParser.parseToken(ByteSequence buf, ParserCursor cursor, java.util.BitSet delimiters)
          Extracts from the sequence of bytes a token terminated with any of the given delimiters discarding semantically insignificant whitespace characters and comments.
 java.lang.String RawFieldParser.parseValue(ByteSequence buf, ParserCursor cursor, java.util.BitSet delimiters)
          Extracts from the sequence of bytes a value which can be enclosed in quote marks and terminated with any of the given delimiters discarding semantically insignificant whitespace characters and comments.
 void RawFieldParser.skipAllWhiteSpace(ByteSequence buf, ParserCursor cursor)
          Skips semantically insignificant whitespace characters and comments and moves the cursor to the closest semantically significant non-whitespace character.
 void RawFieldParser.skipComment(ByteSequence buf, ParserCursor cursor)
          Skips semantically insignificant content if the current position is positioned at the beginning of a comment and moves the cursor past the end of the comment.
 void RawFieldParser.skipWhiteSpace(ByteSequence buf, ParserCursor cursor)
          Skips semantically insignificant whitespace characters and moves the cursor to the closest non-whitespace character.
 



Copyright © 2004-2012 The Apache Software Foundation. All Rights Reserved.