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.standard -
-
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_DNSName space to be used when the name string is a fully-qualified domain name.static UuidNamespaceUuidCreator. NAMESPACE_OIDName space to be used when the name string is an ISO OID.static UuidNamespaceUuidCreator. NAMESPACE_URLName space to be used when the name string is a URL.static UuidNamespaceUuidCreator. NAMESPACE_X500Name space to be used when the name string is an X.500 DN (DER or text).Methods 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. 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). -
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)Get the enum 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 UUIDAbstNameBasedFactory. create(UuidNamespace namespace, byte[] name)Returns a name-based UUID.UUIDAbstNameBasedFactory. create(UuidNamespace namespace, String name)Returns a name-based UUID.protected static byte[]UuidFactory. namespaceBytes(UuidNamespace namespace)Converts a name space enumeration into a byte array.UuidFactory.Parameters.BuilderUuidFactory.Parameters.Builder. withNamespace(UuidNamespace namespace)Use the name space enum. -
Uses of UuidNamespace in com.github.f4b6a3.uuid.factory.standard
Constructors in com.github.f4b6a3.uuid.factory.standard with parameters of type UuidNamespace Constructor Description NameBasedMd5Factory(UuidNamespace namespace)Constructor with a namespace.NameBasedSha1Factory(UuidNamespace namespace)Constructor with a namespace.
-