Searched refs:encodedWord (Results 1 - 1 of 1) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
H A DDecoderUtil.java104 * @param encodedWord the encoded word to decode.
110 public static String decodeB(String encodedWord, String charset) argument
113 return new String(decodeBase64(encodedWord), charset);
120 * @param encodedWord the encoded word to decode.
126 public static String decodeQ(String encodedWord, String charset) argument
133 for (int i = 0; i < encodedWord.length(); i++) {
134 char c = encodedWord.charAt(i);

Completed in 62 milliseconds