Package com.io7m.looseleaf.protocol.v1
Record Class LLv1RUD
java.lang.Object
java.lang.Record
com.io7m.looseleaf.protocol.v1.LLv1RUD
- Record Components:
read- The keys to readupdate- The keys to updatedelete- The keys to delete
- All Implemented Interfaces:
LLv1MessageType
public record LLv1RUD(Set<String> read, Map<String,String> update, Set<String> delete)
extends Record
implements LLv1MessageType
A transactional read-update-delete operation. First, all keys in
read
will be read, then all keys in update will be updated, and finally
all keys in delete will be deleted.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondelete()Returns the value of thedeleterecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.read()Returns the value of thereadrecord component.final StringtoString()Returns a string representation of this record class.update()Returns the value of theupdaterecord component.
-
Constructor Details
-
LLv1RUD
A transactional read-update-delete operation. First, all keys inreadwill be read, then all keys inupdatewill be updated, and finally all keys indeletewill be deleted.- Parameters:
read- The keys to readupdate- The keys to updatedelete- The keys to delete
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
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. -
equals
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. All components in this record class are compared withObjects::equals(Object,Object). -
read
Returns the value of thereadrecord component.- Returns:
- the value of the
readrecord component
-
update
Returns the value of theupdaterecord component.- Returns:
- the value of the
updaterecord component
-
delete
Returns the value of thedeleterecord component.- Returns:
- the value of the
deleterecord component
-