Uses of Class
org.miaixz.bus.core.data.id.ULID

Packages that use ULID
Package
Description
 
  • Uses of ULID in org.miaixz.bus.core.data.id

    Methods in org.miaixz.bus.core.data.id that return ULID
    Modifier and Type
    Method
    Description
    ULID.increment()
    自增ULID
    ULID.nextMonotonic(long timestamp)
    获取下一个有序的ULID
    static ULID
    ULID.of()
    创建一个新的ULID,使用当前系统时间戳和随机数
    static ULID
    ULID.of(byte[] data)
    从bytes解析ULID
    static ULID
    ULID.of(long timestamp)
    创建一个新的ULID,使用指定系统时间戳和随机数
    static ULID
    ULID.of(long timestamp, byte[] randomness)
    创建一个新的ULID,使用指定系统时间戳和指定填充数
    static ULID
    ULID.of(long timestamp, Random random)
    创建一个新的ULID,使用指定系统时间戳和指定随机对象
    static ULID
    ULID.of(String ulidString)
    解析一个Crockford`s Base32的ULID
    Methods in org.miaixz.bus.core.data.id with parameters of type ULID
    Modifier and Type
    Method
    Description
    int
    ULID.compareTo(ULID o)