cz.mmsparams.api.utils.CommonUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
The newest version!
package cz.mmsparams.api.utils;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
public class CommonUtils
{
private CommonUtils()
{
}
public static String getUUID()
{
return UUID.randomUUID().toString();
}
public static List getUUIDList(int count)
{
List l = new ArrayList<>();
if (count < 1)
return l;
for (int i = 0; i < count; i++)
l.add(getUUID());
return l;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy