Date Type Android

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
class Main {
    /**
     * Join an array of Strings together.
     * 
     * @param glue Token to place between Strings.
     * @param pieces Array of Strings to join.
     * @return String presentation of joined Strings.
     * @see #join(String,java.util.Iterator)
     */
    public static String join(List pieces, String glue) {
        return join(pieces.iterator(), glue);
    }
    /**
     * Join an Iteration of Strings together.
     * 


     * 

Example

     * 


     * 


     * 
     * 


     * // get Iterator of Strings ("abc","def","123");
     * Iterator i = getIterator();
     * out.print(TextUtils.join(", ", i));
     * // prints: "abc, def, 123"
     * 

     * 
     * @param glue Token to place between Strings.
     * @param pieces Iteration of Strings to join.
     * @return String presentation of joined Strings.
     */
    private static String join(Iterator pieces, String glue) {
        StringBuilder s = new StringBuilder();
        while (pieces.hasNext()) {
            s.append(pieces.next());
            if (pieces.hasNext()) {
                s.append(glue);
            }
        }
        return s.toString();
    }
    /**
     * Join an array of Strings together.
     * 
     * @param glue Token to place between Strings.
     * @param pieces Array of Strings to join.
     * @return String presentation of joined Strings.
     * @see #join(String,java.util.Iterator)
     */
    public static String join(Map pieces, String glue) {
        List tmp = new ArrayList(pieces.size());
        for (Map.Entry entry : pieces.entrySet()) {
            tmp.add(entry.getKey() + ":" + entry.getValue());
        }
        return join(tmp, glue);
    }
}