Java Collection Print printCollection(final Collection collection)

Here you can find the source of printCollection(final Collection collection)

Description

Helper-Method for printing a Collection in the console.

License

Apache License

Parameter

Parameter Description
T the generic type
collection The Collection to print.

Declaration

public static <T> void printCollection(final Collection<T> collection) 

Method Source Code

//package com.java2s;
/**/*from   w w w  .ja v  a2 s  . c  o  m*/
 * Copyright (C) 2007 Asterios Raptis
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.Collection;

public class Main {
    /**
     * Helper-Method for printing a Collection in the console.
     *
     * @param <T>
     *            the generic type
     * @param collection
     *            The Collection to print.
     */
    public static <T> void printCollection(final Collection<T> collection) {
        int count = 1;
        for (T element : collection) {
            System.err.println(count + ".)element:" + element);
            count++;
        }
    }
}

Related

  1. printCollection(Collection col)
  2. printCollection(Collection collection)
  3. printCollection(Collection l)
  4. printCollection(Collection col)
  5. printCollection(Collection collections)
  6. printCollection(String name, Collection collection)
  7. printCollectionDebug(Collection c)
  8. printCollectionSorted(Collection l, String indent)
  9. printElement(Collection pCollection, boolean pAllElement)