java.lang.Object
java.lang.Record
net.lageto.monero.rpc.model.TransferDestination
- Record Components:
address
- recipient's addressamount
- transfer amount in atomic units. 1 moneroj = 1e12 atomic units
Represents a destination when transferring Moneroj.
-
Constructor Summary
ConstructorDescriptionTransferDestination(String address, long amount)
Creates an instance of aTransferDestination
record class. -
Method Summary
Modifier and TypeMethodDescriptionaddress()
Returns the value of theaddress
record component.long
amount()
Returns the value of theamount
record component.boolean
Indicates whether some other object is "equal to" this one.int
hashCode()
Returns a hash code value for this object.toString()
Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
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
public final int 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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
address
Returns the value of theaddress
record component.- Returns:
- the value of the
address
record component
-
amount
public long amount()Returns the value of theamount
record component.- Returns:
- the value of the
amount
record component
-