Here you can find the source of joinAsStrings(Collection
Parameter | Description |
---|---|
T | The type of the values in the collection to be joined |
values | The collection to be joined |
separator | The separator to insert between each value in the result string |
static <T> String joinAsStrings(Collection<T> values, String separator)
//package com.java2s; /*/* w w w. j a va2 s. c o m*/ * Sleuth Kit Data Model * * Copyright 2017 Basis Technology Corp. * Contact: carrier <at> sleuthkit <dot> org * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.util.Collection; public class Main { /** * Utility method to join a collection into a string using a supplied * separator. * * @param <T> The type of the values in the collection to be joined * @param values The collection to be joined * @param separator The separator to insert between each value in the result * string * * @return a string with the elements of values separated by separator */ static <T> String joinAsStrings(Collection<T> values, String separator) { if (values == null || values.isEmpty()) { return ""; } StringBuilder result = new StringBuilder(); for (T val : values) { result.append(val); result.append(separator); } return result.substring(0, result.lastIndexOf(separator)); } }