Module xorcery.jsonapi
Package com.exoreaction.xorcery.jsonapi
Record Class ResourceObjectIdentifiers
- All Implemented Interfaces:
JsonElement
- Author:
- rickardoberg
-
Nested Class Summary
-
Constructor Summary
ConstructorDescriptionResourceObjectIdentifiers
(ArrayNode json) Creates an instance of aResourceObjectIdentifiers
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
contains
(ResourceObject resourceObject) boolean
contains
(ResourceObjectIdentifier resourceObjectIdentifier) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.ArrayNode
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
-
ResourceObjectIdentifiers
Creates an instance of aResourceObjectIdentifiers
record class.- Parameters:
json
- the value for thejson
record component
-
-
Method Details
-
getResources
-
contains
-
contains
-
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
-