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

Packages that use ULID
Package
Description
数据相关封装 如ID、电话、统一社会信用代码、密码、坐标系、数据脱敏等
  • Uses of ULID in org.miaixz.bus.core.data

    Methods in org.miaixz.bus.core.data 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 with parameters of type ULID
    Modifier and Type
    Method
    Description
    int
    ULID.compareTo(ULID o)