Uses of Class
com.github.f4b6a3.uuid.enums.UuidNamespace
-
Packages that use UuidNamespace Package Description com.github.f4b6a3.uuid com.github.f4b6a3.uuid.enums com.github.f4b6a3.uuid.factory com.github.f4b6a3.uuid.factory.rfc4122 -
-
Uses of UuidNamespace in com.github.f4b6a3.uuid
Fields in com.github.f4b6a3.uuid declared as UuidNamespace Modifier and Type Field Description static UuidNamespaceUuidCreator. NAMESPACE_DNSstatic UuidNamespaceUuidCreator. NAMESPACE_OIDstatic UuidNamespaceUuidCreator. NAMESPACE_URLstatic UuidNamespaceUuidCreator. NAMESPACE_X500Methods in com.github.f4b6a3.uuid with parameters of type UuidNamespace Modifier and Type Method Description static UUIDUuidCreator. getNameBasedMd5(UuidNamespace namespace, byte[] name)Returns a name-based unique identifier that uses MD5 hashing (UUIDv3).static UUIDUuidCreator. getNameBasedMd5(UuidNamespace namespace, String name)Returns a name-based unique identifier that uses MD5 hashing (UUIDv3).static UUIDUuidCreator. getNameBasedMd5(UuidNamespace namespace, UUID name)Returns a name-based unique identifier that uses MD5 hashing (UUIDv3).static UUIDUuidCreator. getNameBasedSha1(UuidNamespace namespace, byte[] name)Returns a name-based unique identifier that uses SHA-1 hashing (UUIDv5).static UUIDUuidCreator. getNameBasedSha1(UuidNamespace namespace, String name)Returns a name-based unique identifier that uses SHA-1 hashing (UUIDv5).static UUIDUuidCreator. getNameBasedSha1(UuidNamespace namespace, UUID name)Returns a name-based unique identifier that uses SHA-1 hashing (UUIDv5). -
Uses of UuidNamespace in com.github.f4b6a3.uuid.enums
Methods in com.github.f4b6a3.uuid.enums that return UuidNamespace Modifier and Type Method Description static UuidNamespaceUuidNamespace. getNamespace(UUID value)static UuidNamespaceUuidNamespace. valueOf(String name)Returns the enum constant of this type with the specified name.static UuidNamespace[]UuidNamespace. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of UuidNamespace in com.github.f4b6a3.uuid.factory
Methods in com.github.f4b6a3.uuid.factory with parameters of type UuidNamespace Modifier and Type Method Description protected static byte[]AbstNameBasedFactory. bytes(UuidNamespace namespace)Converts a name space enumeration into a byte array.UUIDAbstNameBasedFactory. create(UuidNamespace namespace, byte[] name)Returns a name-based UUID.UUIDAbstNameBasedFactory. create(UuidNamespace namespace, String name)Returns a name-based UUID.UUIDAbstNameBasedFactory. create(UuidNamespace namespace, UUID name)Returns a name-based UUID. -
Uses of UuidNamespace in com.github.f4b6a3.uuid.factory.rfc4122
Constructors in com.github.f4b6a3.uuid.factory.rfc4122 with parameters of type UuidNamespace Constructor Description NameBasedMd5Factory(UuidNamespace namespace)NameBasedSha1Factory(UuidNamespace namespace)
-