getUuid static method

String getUuid(
  1. int length
)

获取UUID(组合版本)

length 参数未使用,保留用于向后兼容

返回基于 v1 和 v4 组合生成的 v5 UUID

Implementation

static String getUuid(int length) {
  return getUuidV5(getUuidV1() + getUuidV4());
}