Package ch.rswk.meta.engine
Record Class MetaService.PartialUpdate
java.lang.Object
java.lang.Record
ch.rswk.meta.engine.MetaService.PartialUpdate
- Enclosing class:
MetaService
private static record MetaService.PartialUpdate(com.fasterxml.jackson.databind.node.ObjectNode data, MetaObject meta)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final com.fasterxml.jackson.databind.node.ObjectNode
The field for thedata
record component.private final MetaObject
The field for themeta
record component. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
PartialUpdate
(com.fasterxml.jackson.databind.node.ObjectNode data, MetaObject meta) Creates an instance of aPartialUpdate
record class. -
Method Summary
Modifier and TypeMethodDescriptioncom.fasterxml.jackson.databind.node.ObjectNode
data()
Returns the value of thedata
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.meta()
Returns the value of themeta
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
data
private final com.fasterxml.jackson.databind.node.ObjectNode dataThe field for thedata
record component. -
meta
The field for themeta
record component.
-
-
Constructor Details
-
PartialUpdate
Creates an instance of aPartialUpdate
record class.- Parameters:
data
- the value for thedata
record componentmeta
- the value for themeta
record component
-
-
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)
. -
data
public com.fasterxml.jackson.databind.node.ObjectNode data()Returns the value of thedata
record component.- Returns:
- the value of the
data
record component
-
meta
Returns the value of themeta
record component.- Returns:
- the value of the
meta
record component
-