Class GollumStringUtils
-
- All Implemented Interfaces:
public class GollumStringUtils
-
-
Constructor Summary
Constructors Constructor Description GollumStringUtils()
-
Method Summary
Modifier and Type Method Description static String
buildStringWith(Array<String> strings)
Used to concat multiple strings via a stringbuilder to maximize performances. static String
join(char separator, List<out Object> data)
Return a string which contains the given data separated by the separator parameter. static String
capitalize(@Nullable() String message)
Upper case first letter. -
-
Method Detail
-
buildStringWith
@NonNull() static String buildStringWith(Array<String> strings)
Used to concat multiple strings via a stringbuilder to maximize performances.
-
join
@NonNull() static String join(char separator, List<out Object> data)
Return a string which contains the given data separated by the separator parameter. example: joint(";", {1,2,3}) return -> "1,2,3"
-
capitalize
@NonNull() static String capitalize(@Nullable() String message)
Upper case first letter.
-
-
-
-