| Constructor and Description |
|---|
StringExtensions() |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isNullOrEmpty(String s)
|
static String |
operator_plus(String a,
Object b)
The binary
+ operator that concatenates a string and the string
reprentation of an object. |
static String |
operator_plus(String a,
String b)
The binary
+ operator that concatenates two strings. |
static String |
toFirstLower(String s)
|
static String |
toFirstUpper(String s)
|
@Pure public static String operator_plus(String a, Object b)
+ operator that concatenates a string and the string
reprentation of an object.a - a string.b - an object.a + b@Pure public static String operator_plus(String a, String b)
+ operator that concatenates two strings.a - a string.b - another string.a + b@Pure public static boolean isNullOrEmpty(String s)
s - the stringtrue if s is null or equal to the empty String ""Copyright © 2015. All Rights Reserved.