Generates a unique string each time it is called. @return a new unique UUID as a string, using java.util.UUID
()
| 176 | * @return a new unique UUID as a string, using java.util.UUID |
| 177 | */ |
| 178 | public static String getUUID() { |
| 179 | return UUID.randomUUID().toString(); |
| 180 | } |
| 181 | |
| 182 | private static double[] getDiff(double[] sequence) { |
| 183 | double[] ret = new double[sequence.length - 1]; |
no test coverage detected