Java com.amazonaws.util StringUtils fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.util StringUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.util StringUtils.

The text is from its open source code.

Field

CharsetUTF8

Method

booleanbeginsWithIgnoreCase(final String data, final String seq)
Performs a case insensitive comparison and returns true if the data begins with the given sequence.
StringfromBoolean(Boolean value)
StringfromDate(Date value)
Converts the specified date to an ISO 8601 timestamp string and returns it.
StringfromInteger(Integer value)
StringfromString(String value)
booleanisNullOrEmpty(String value)
Stringjoin(String joiner, String... parts)
Joins the strings in parts with joiner between each string
Stringreplace(String originalString, String partToMatch, String replacement)
Stringtrim(String value)
A null-safe trim method.