Capitalizes this String.
String capitalize() { if (isBlank) { return this; } else if (length == 1) { return toUpperCase(); } else { return this[0].toUpperCase() + substring(1); } }