Record Class IracManagerKeyInfo
java.lang.Object
java.lang.Record
org.infinispan.xsite.irac.IracManagerKeyInfo
-
Constructor Summary
ConstructorsConstructorDescriptionIracManagerKeyInfo
(int segment, Object key, Object owner) Creates an instance of aIracManagerKeyInfo
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.key()
Returns the value of thekey
record component.owner()
Returns the value of theowner
record component.static IracManagerKeyInfo
readFrom
(ObjectInput input) int
segment()
Returns the value of thesegment
record component.final String
toString()
Returns a string representation of this record class.static void
writeTo
(ObjectOutput output, IracManagerKeyInfo keyInfo)
-
Constructor Details
-
IracManagerKeyInfo
-
-
Method Details
-
writeTo
- Throws:
IOException
-
readFrom
public static IracManagerKeyInfo readFrom(ObjectInput input) throws IOException, ClassNotFoundException - Throws:
IOException
ClassNotFoundException
-
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with thecompare
method from their corresponding wrapper classes. -
segment
public int segment()Returns the value of thesegment
record component.- Returns:
- the value of the
segment
record component
-
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-
owner
Returns the value of theowner
record component.- Returns:
- the value of the
owner
record component
-