- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {BufferedReader b =
InputStream in;new BufferedReader(new InputStreamReader(in))
Reader in;new BufferedReader(in)
File file;new BufferedReader(new FileReader(file))
- Smart code suggestions by Codota
}
/** * Convert a UUID to a base 32 string (without padding) * @param uuid UUID * @return base32 string for the uuid */ @NotNull public static String uuidToB32Str(@NotNull UUID uuid) { return StringUtils.base32Encode(uuidToByteArray(uuid)).replace("=",""); }
/** * Convert a UUID to a base 32 string (without padding) * @param uuid UUID * @return base32 string for the uuid */ @NotNull public static String uuidToB32Str(@NotNull UUID uuid) { return StringUtils.base32Encode(uuidToByteArray(uuid)).replace("=",""); }