Record Class PhysicalAddress
java.lang.Object
java.lang.Record
org.infinispan.remoting.transport.PhysicalAddress
-
Constructor Summary
ConstructorsConstructorDescriptionPhysicalAddress
(InetAddress address, int port) Creates an instance of aPhysicalAddress
record class. -
Method Summary
Modifier and TypeMethodDescriptionaddress()
Returns the value of theaddress
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.int
port()
Returns the value of theport
record component.toString()
Returns a string representation of this record class.
-
Constructor Details
-
PhysicalAddress
Creates an instance of aPhysicalAddress
record class.- Parameters:
address
- the value for theaddress
record componentport
- the value for theport
record component
-
-
Method Details
-
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. -
address
Returns the value of theaddress
record component.- Returns:
- the value of the
address
record component
-
port
public int port()Returns the value of theport
record component.- Returns:
- the value of the
port
record component
-