List of usage examples for com.google.common.primitives Longs join
public static String join(String separator, long... array)
From source file:com.flexive.shared.FxArrayUtils.java
/** * Convert an int array to a string array with the given separator * * @param elements elements to convert to a String * @param separator separator for the resulting String * @return String representation of the array * @since 3.2.0/*from w w w .j av a 2s. c o m*/ */ public static String toStringArray(long[] elements, char separator) { return Longs.join(String.valueOf(separator), elements); }