Example usage for Java com.amazonaws.util StringUtils fields, constructors, methods, implement or subclass
The text is from its open source code.
Charset | UTF8 |
boolean | beginsWithIgnoreCase(final String data, final String seq) Performs a case insensitive comparison and returns true if the data begins with the given sequence. |
String | fromBoolean(Boolean value) |
String | fromDate(Date value) Converts the specified date to an ISO 8601 timestamp string and returns it. |
String | fromInteger(Integer value) |
String | fromString(String value) |
boolean | isNullOrEmpty(String value) |
String | join(String joiner, String... parts) Joins the strings in parts with joiner between each string |
String | replace(String originalString, String partToMatch, String replacement) |
String | trim(String value) A null-safe trim method. |