Package com.microstrategy.utils
Class WebURLDecoder
- java.lang.Object
 - 
- com.microstrategy.utils.WebURLDecoder
 
 
- 
public class WebURLDecoder extends java.lang.Object- Since:
 - MicroStrategy Web 7.3.1 or earlier
 
 
- 
- 
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Stringdecode(java.lang.String input, java.lang.String encodeFormat)static java.lang.StringdoubleDecode(java.lang.String input, java.lang.String encodeFormat)Decodes a double encoded string using a specific encoding scheme. 
 - 
 
- 
- 
Method Detail
- 
decode
public static java.lang.String decode(java.lang.String input, java.lang.String encodeFormat) throws java.io.UnsupportedEncodingException- Throws:
 java.io.UnsupportedEncodingException
 
- 
doubleDecode
public static java.lang.String doubleDecode(java.lang.String input, java.lang.String encodeFormat) throws java.io.UnsupportedEncodingExceptionDecodes a double encoded string using a specific encoding scheme.- Parameters:
 input- the input string to decodeencodeFormat- the format of the string- Returns:
 - the decoded string
 - Throws:
 java.io.UnsupportedEncodingException- thrown if named decoding is not supported- Since:
 - MicroStrategy Web 7.5.1
 - See Also:
 WebURLEncoder.doubleEncode(String, String)
 
 - 
 
 -