Java Random randomSimpleId()

Here you can find the source of randomSimpleId()

Description

random Simple Id

License

Apache License

Declaration

public static String randomSimpleId() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static String randomSimpleId() {
        return System.currentTimeMillis() + "-" + System.nanoTime();
    }/* w w  w .j a  v  a 2 s.  co  m*/
}

Related

  1. randomRange(int end)
  2. randomScalingFactor()
  3. randomSeed()
  4. randomShort()
  5. randomSign()
  6. randomSleep()
  7. randomStateAbbr()
  8. randomStr(Random rnd, int size)
  9. randomSubList(List list, int sizeOfSubList)