Java Collection to Array toIntArray(Collection collection)

Here you can find the source of toIntArray(Collection collection)

Description

Returns an array of ints consisting of the elements of the specified collection.

License

Open Source License

Parameter

Parameter Description
collection Collection of Integers

Return

Array of ints

Declaration

public static int[] toIntArray(Collection<Integer> collection) 

Method Source Code

//package com.java2s;
/*// w  ww .  j a v  a  2  s.  c om
 * Copyright 2007-2013 VTT Biotechnology
 * This file is part of Guineu.
 *
 * Guineu is free software; you can redistribute it and/or modify it under the
 * terms of the GNU General Public License as published by the Free Software
 * Foundation; either version 2 of the License, or (at your option) any later
 * version.
 *
 * Guineu is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * Guineu; if not, write to the Free Software Foundation, Inc., 51 Franklin St,
 * Fifth Floor, Boston, MA 02110-1301 USA
 */

import java.util.Collection;
import java.util.Iterator;

public class Main {
    /**
     * Returns an array of ints consisting of the elements of the specified
     * collection.
     *
     * @param collection Collection of Integers
     * @return Array of ints
     */
    public static int[] toIntArray(Collection<Integer> collection) {
        int array[] = new int[collection.size()];
        int index = 0;
        Iterator<Integer> it = collection.iterator();
        while (it.hasNext()) {
            array[index++] = it.next();
        }
        return array;
    }
}

Related

  1. toIntArray(Collection coll)
  2. toIntArray(Collection coll)
  3. toIntArray(Collection collection)
  4. toIntArray(Collection collection)
  5. toIntArray(Collection collection)
  6. toIntArray(Collection ints)
  7. toIntArray(Collection list)
  8. toIntArray(Collection list)
  9. toIntArray(Collection values)