org.camunda.bpm.model.xml.impl.util
Class StringUtil
java.lang.Object
org.camunda.bpm.model.xml.impl.util.StringUtil
public final class StringUtil
- extends Object
- Author:
- Sebastian Menski
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
StringUtil
public StringUtil()
splitCommaSeparatedList
public static List<String> splitCommaSeparatedList(String text)
- Splits a comma separated list in to single Strings. The list can
contain expressions with commas in it.
- Parameters:
text - the comma separated list
- Returns:
- the Strings of the list or an empty List if text is empty or null
joinCommaSeparatedList
public static String joinCommaSeparatedList(List<String> list)
- Joins a list of Strings to a comma separated single String.
- Parameters:
list - the list to join
- Returns:
- the resulting comma separated string or null if the list is null
splitListBySeparator
public static List<String> splitListBySeparator(String text,
String separator)
joinList
public static String joinList(List<String> list,
String separator)
Copyright © 2016 camunda services GmbH. All rights reserved.