Example usage for org.apache.wicket.util.string StringList valueOf

List of usage examples for org.apache.wicket.util.string StringList valueOf

Introduction

In this page you can find the example usage for org.apache.wicket.util.string StringList valueOf.

Prototype

public static StringList valueOf(final String[] array) 

Source Link

Document

Converts a string array to a string list.

Usage

From source file:org.devproof.portal.core.module.common.panel.captcha.OpaqueRegion.java

License:Apache License

/**
 * {@inheritDoc}
 */
@Override
public String toString() {
    return StringList.valueOf(rectangles).join();
}

From source file:org.yes.cart.web.application.MultiWebApplicationPath.java

License:Apache License

/**
 * @see java.lang.Object#toString()//from   ww w.ja va 2 s.  c  om
 */
@Override
public String toString() {
    return "[theme chain = " + StringList.valueOf(webappPaths) + "]";
}