Java List Join join(List olist, String glue)

Here you can find the source of join(List olist, String glue)

Description

join

License

Open Source License

Declaration

public static String join(List<? extends Object> olist, String glue) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.util.*;

public class Main {
    public static String join(List<? extends Object> olist, String glue) {
        return olist.toString();
    }//from w  w  w. j  a v a2  s  .  c  om
}

Related

  1. join(List s, String delimiter)
  2. join(List s, String delimiter)
  3. join(List items, String conjunction)
  4. join(List items, String separator)
  5. join(List list)
  6. join(List valueList, String separator)
  7. join(List words, String iDelimiter)
  8. join(List list, T element)
  9. join(List _items, String _delim)