Java Random randomValue()

Here you can find the source of randomValue()

Description

random Value

License

Open Source License

Declaration

public static final String randomValue() 

Method Source Code

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

public class Main {
    public static final String randomValue() {
        double currentTimeMillis = System.currentTimeMillis() * Math.random();
        return String.valueOf(Math.round(currentTimeMillis));
    }//from   ww  w .  j a v  a2  s.com
}

Related

  1. randomStateAbbr()
  2. randomStr(Random rnd, int size)
  3. randomSubList(List list, int sizeOfSubList)
  4. randomSuccess()
  5. randomUniformUniqueIntegerList(int sz)
  6. randomValue(T[] array)
  7. randomVector(int size)
  8. randRandom(Random random)
  9. randRange(float from, float to)