Class Base32


  • public class Base32
    extends java.lang.Object
    Base32 string encoding is useful for when filenames case-insensitive filesystems are encoded. Base32 representation takes roughly 20% more space then Base64.
    See Also:
    Base32 Wikipedia entry
    • Constructor Summary

      Constructors 
      Constructor Description
      Base32()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String decode​(java.lang.String str)  
      static java.lang.String encode​(java.lang.String str)  
      static StringEncoder<java.lang.String> getStringEncoder()  
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • decode

        public static java.lang.String decode​(java.lang.String str)
      • encode

        public static java.lang.String encode​(java.lang.String str)