java.lang.ObjectObject120
Method Summary | |
---|---|
static char |
charAt(String _this,
int i)
Select a single character from a string, by index (starting at 0). |
static String |
charToString(char c)
Convert a char to a String-of-length-1. |
static int |
doubleToInt(double x)
Convert a double to an int (truncating towards zero). |
static boolean |
equals(java.lang.Object _this,
java.lang.Object that)
Are two values equal? Works on any values (non-null). |
static boolean |
equalsIgnoreCase(String a,
String b)
Are two Strings equal (up to case, but including punctuation). |
static double |
intToDouble(int n)
Convert an int to a double. |
static String |
intToString(int n)
Convert an int to a String. |
static boolean |
isEmpty(String _this)
Return whether or not a String is the empty string "" (0 letters long). |
static int |
length(String _this)
Return the number of characters in a string. |
static char |
stringToChar(String s)
Convert a String-of-length-1 to a char. |
static double |
stringToDouble(String s)
Convert a String to a double. |
static int |
stringToInt(String s)
Convert a String to an int. |
static String |
substring(String _this,
int from)
Return a substring of the given string. |
static String |
substring(String _this,
int from,
int to)
Return a substring of the given string. |
static String |
toLowerCase(String _this)
Return a lower-case version of the given string. |
static String |
toString(java.lang.Object _this)
Convert any value into a String. |
static String |
toUpperCase(String _this)
Return an upper-case version of the given string. |