Example usage for com.google.common.primitives Doubles join

List of usage examples for com.google.common.primitives Doubles join

Introduction

In this page you can find the example usage for com.google.common.primitives Doubles join.

Prototype

public static String join(String separator, double... array) 

Source Link

Document

Returns a string containing the supplied double values, converted to strings as specified by Double#toString(double) , and separated by separator .

Usage

From source file:org.apache.samoa.core.DoubleVector.java

public void getSingleLineDescription(StringBuilder out) {
    out.append("{");
    out.append(Doubles.join("|", this.doubleArray));
    out.append("}");
}