public class StringHelper extends Object
Modifier and Type | Method and Description |
---|---|
static String |
decapitalize(String string)
Returns the given string, with its first letter changed to lower-case unless the string starts with more than
one upper-case letter, in which case the string will be returned unaltered.
|
static String |
join(Iterable<?> iterable,
String separator)
Joins the elements of the given iterable to a string, separated by the given separator string.
|
static String |
join(Object[] array,
String separator)
Joins the elements of the given array to a string, separated by the given separator string.
|
public static String join(Object[] array, String separator)
array
- the array to joinseparator
- the separator stringpublic static String join(Iterable<?> iterable, String separator)
iterable
- the iterable to joinseparator
- the separator stringpublic static String decapitalize(String string)
Provided to avoid a dependency on the Introspector
API which is not available on the Android
platform (HV-779).
string
- the string to decapitalizenull
is returned if null
is passed as input; An empty
string is returned if an empty string is passed as inputIntrospector
Copyright © 2007-2014 Red Hat Middleware, LLC. All Rights Reserved