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

com.moon.core.util.IDUtil Maven / Gradle / Ivy

package com.moon.core.util;

import java.util.UUID;

import static com.moon.core.lang.ThrowUtil.noInstanceError;

/**
 * identifier ID 生成器
 *
 * @author moonsky
 */
public final class IDUtil {
    private IDUtil() { noInstanceError(); }

    public static String uuid() { return UUID.randomUUID().toString(); }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy