@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
date="2020-03-09T15:36:44.645Z[UTC]")
public class StringUtil
extends java.lang.Object
| Constructor and Description |
|---|
StringUtil() |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
containsIgnoreCase(java.lang.String[] array,
java.lang.String value)
Check if the given array contains the given value (with case-insensitive comparison).
|
static java.lang.String |
join(java.lang.String[] array,
java.lang.String separator)
Join an array of strings with the given separator.
|
public static boolean containsIgnoreCase(java.lang.String[] array,
java.lang.String value)
array - The arrayvalue - The value to searchpublic static java.lang.String join(java.lang.String[] array,
java.lang.String separator)
Note: This might be replaced by utility method from commons-lang or guava someday if one of those libraries is added as dependency.
array - The array of stringsseparator - The separator