Module xorcery.domainevents
Record Class JsonDomainEvent.JsonRelationship
- All Implemented Interfaces:
JsonElement
- Enclosing class:
- JsonDomainEvent
public static record JsonDomainEvent.JsonRelationship(ObjectNode json)
extends Record
implements JsonElement
-
Constructor Summary
ConstructorDescriptionJsonRelationship
(ObjectNode json) Creates an instance of aJsonRelationship
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.ObjectNode
json()
Returns the value of thejson
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from interface JsonElement
array, asMap, getBoolean, getEnum, getFalsy, getInteger, getJson, getList, getListAs, getLong, getObjectAs, getObjectListAs, getString, getURI, has, object, toJsonString
-
Constructor Details
-
JsonRelationship
Creates an instance of aJsonRelationship
record class.- Parameters:
json
- the value for thejson
record component
-
-
Method Details
-
getEntity
-
getRelationship
-
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
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)
. -
json
Returns the value of thejson
record component.- Specified by:
json
in interfaceJsonElement
- Returns:
- the value of the
json
record component
-