Example usage for org.apache.shiro.util StringUtils join

List of usage examples for org.apache.shiro.util StringUtils join

Introduction

In this page you can find the example usage for org.apache.shiro.util StringUtils join.

Prototype

public static String join(Iterator<?> iterator, String separator) 

Source Link

Document

Joins the elements of the provided Iterator into a single String containing the provided elements.

No delimiter is added before or after the list.

Usage

From source file:org.sonatype.nexus.yum.internal.capabilities.AliasMappings.java

License:Open Source License

@Override
public String toString() {
    return StringUtils.join(aliases.entrySet().iterator(), ",");
}