Record UUIDGenerator
java.lang.Object
java.lang.Record
io.memoria.jutils.adapter.generator.UUIDGenerator
- All Implemented Interfaces:
IdGenerator,java.util.function.Supplier<java.lang.String>
public record UUIDGenerator() extends java.lang.Record implements IdGenerator
-
Constructor Summary
Constructors Constructor Description UUIDGenerator()Creates an instance of aUUIDGeneratorrecord. -
Method Summary
-
Constructor Details
-
UUIDGenerator
public UUIDGenerator()Creates an instance of aUUIDGeneratorrecord.
-
-
Method Details
-
get
public java.lang.String get()- Specified by:
getin interfaceIdGenerator- Specified by:
getin interfacejava.util.function.Supplier<java.lang.String>
-
toString
public java.lang.String toString()Returns a string representation of this record. The representation contains the name of the type, followed by the name and value of each of the record components.- Specified by:
toStringin classjava.lang.Record- Returns:
- a string representation of this object
-
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.- Specified by:
hashCodein classjava.lang.Record- Returns:
- a hash code value for this object
-
equals
public final boolean equals(java.lang.Object o)Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal.- Specified by:
equalsin classjava.lang.Record- Parameters:
o- the object with which to compare- Returns:
trueif this object is the same as theoargument;falseotherwise.
-