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 aPhysicalAddressrecord class. -
Method Summary
Modifier and TypeMethodDescriptionaddress()Returns the value of theaddressrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intport()Returns the value of theportrecord component.toString()Returns a string representation of this record class.
-
Constructor Details
-
PhysicalAddress
Creates an instance of aPhysicalAddressrecord class.- Parameters:
address- the value for theaddressrecord componentport- the value for theportrecord 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 thecomparemethod from their corresponding wrapper classes. -
address
Returns the value of theaddressrecord component.- Returns:
- the value of the
addressrecord component
-
port
public int port()Returns the value of theportrecord component.- Returns:
- the value of the
portrecord component
-