Class BASE64MailboxDecoder


  • public class BASE64MailboxDecoder
    extends java.lang.Object
    See the BASE64MailboxEncoder for a description of the RFC2060 and how mailbox names should be encoded. This class will do the correct decoding for mailbox names.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) static char[] pem_array
      This character array provides the character to value map based on RFC1521, but with the modification from RFC2060 which changes the '/' to a ','.
      private static byte[] pem_convert_array  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      protected static int base64decode​(char[] buffer, int offset, java.text.CharacterIterator iter)  
      static java.lang.String decode​(java.lang.String original)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • pem_array

        static final char[] pem_array
        This character array provides the character to value map based on RFC1521, but with the modification from RFC2060 which changes the '/' to a ','.
      • pem_convert_array

        private static final byte[] pem_convert_array
    • Constructor Detail

      • BASE64MailboxDecoder

        public BASE64MailboxDecoder()
    • Method Detail

      • decode

        public static java.lang.String decode​(java.lang.String original)
      • base64decode

        protected static int base64decode​(char[] buffer,
                                          int offset,
                                          java.text.CharacterIterator iter)