All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spun.util.StringIdentifierGenerator Maven / Gradle / Ivy

The newest version!
package com.spun.util;

import java.util.UUID;

/**
 * @deprecated use {@code UUID.randomUUID().toString() }
 */
@Deprecated
public class StringIdentifierGenerator
{
  public static synchronized String nextIdentifier()
  {
    return UUID.randomUUID().toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy