MCPcopy Create free account
hub / github.com/PCGen/pcgen / joining

Method joining

PCGen-base/code/src/java/pcgen/base/lang/StringUtil.java:227–230  ·  view source on GitHub ↗

Returns a Collector that joins the provided elements based on the given separator. @param separator The character used to join the elements of the items provided to the Collector @return A Collector that joins the provided elements based on the given separator

(char separator)

Source from the content-addressed store, hash-verified

225 * @return A Collector that joins the provided elements based on the given separator
226 */
227 public static Collector<CharSequence, ?, String> joining(char separator)
228 {
229 return Collectors.joining(Character.toString(separator));
230 }
231
232 /**
233 * Returns true if the given value has "Valid" separators. This means it does not

Callers 15

unconvertSeparatedMethod · 0.95
toStringMethod · 0.80
unconvertMethod · 0.80
getUnconvertedMethod · 0.80
buildFileListMethod · 0.80
missingFilesTestMethod · 0.80
orphanFilesTestMethod · 0.80
runRoundRobinMethod · 0.80

Calls 1

toStringMethod · 0.65

Tested by 10

buildFileListMethod · 0.64
missingFilesTestMethod · 0.64
orphanFilesTestMethod · 0.64
runRoundRobinMethod · 0.64
commitMethod · 0.64
completeRoundRobinMethod · 0.64