[New] Added AsciiHelper

This commit is contained in:
Robert von Burg 2014-08-12 16:00:25 +02:00
parent 52a04f0c33
commit c7484934a5
1 changed files with 10 additions and 0 deletions

View File

@ -226,6 +226,16 @@ public class AsciiHelper {
*/
public static final char DEL = (char) 127; // Delete
/**
* Returns the ASCII Text of a certain bye value
*
* @param b
* @return String
*/
public static String getAsciiText(byte b) {
return getAsciiText((char) b);
}
/**
* Returns the ASCII Text of a certain char value
*