All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cds.jdbc.hana.search.SearchResolverUtils Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
/*******************************************************************
 * © 2022 SAP SE or an SAP affiliate company. All rights reserved. *
 *******************************************************************/
package com.sap.cds.jdbc.hana.search;

import static java.util.stream.Collectors.joining;

import java.util.Collection;

import com.sap.cds.ql.cqn.CqnElementRef;

public class SearchResolverUtils {

	private SearchResolverUtils() {

	}

	public static String refNames(Collection refs) {
		return refs.stream().map(ref -> ref.displayName()).collect(joining(","));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy