Java Random getRandom()

Here you can find the source of getRandom()

Description

get Random

License

Open Source License

Declaration

@Deprecated
    public static Random getRandom() 

Method Source Code


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

import java.util.*;

public class Main {
    @Deprecated/*from  ww  w. ja  v  a  2 s . c o  m*/
    private static Random random = new Random();

    @Deprecated
    public static Random getRandom() {
        return random;
    }
}

Related

  1. GenerateRandomPin()
  2. getItemID(Random r)
  3. getOreMultiplier(int fortune, Random r)
  4. getPoisson(double lambda, Random rng)
  5. getRandom()
  6. getRandom()
  7. getRandom(Collection collection)
  8. getRandom(int i)
  9. getRandom(int min, int max)