Java Array Shuffle shuffled(List list, Random random)

Here you can find the source of shuffled(List list, Random random)

Description

shuffled

License

Open Source License

Return

list, after shuffling

Declaration

public static List<Integer> shuffled(List<Integer> list, Random random) 

Method Source Code

//package com.java2s;
/*/*from w w  w  .j a va  2s.  co m*/
 * This file is part of the Spider Web Framework.
 * 
 * The Spider Web Framework 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 3 of the License, or
 * (at your option) any later version.
 * 
 * The Spider Web Framework 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 the Spider Web Framework.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.Collections;

import java.util.List;

import java.util.Random;

public class Main {
    /**
     * @return list, after shuffling
     */
    public static List<Integer> shuffled(List<Integer> list, Random random) {
        Collections.shuffle(list, random);
        return list;
    }
}

Related

  1. shuffleArray(int[] array, long rngSeed)
  2. shuffleArray(List list)
  3. shuffleArray(Object[] array)
  4. shuffleArray(T[] ar)
  5. shuffleArray(T[] arr)
  6. shuffledList(List list)
  7. shuffleInPlace(E[] elems, Random rand)
  8. shuffleInPlace(int[] toShuffle, Random random)
  9. shuffleIntArray(int[] arr)