java.lang.Object
java.lang.Record
tech.deplant.java4ever.framework.contract.TIP4Index
- All Implemented Interfaces:
Contract
public record TIP4Index(Sdk sdk, String address, ContractAbi abi, Credentials credentials)
extends Record
implements Contract
Java wrapper class for usage of TIP4Index contract for Everscale blockchain.
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionTIP4Index(Sdk sdk, String address, ContractAbi abi) TIP4Index(Sdk sdk, String address, ContractAbi abi, Credentials credentials) Creates an instance of aTIP4Indexrecord class.TIP4Index(Sdk sdk, String address, Credentials credentials) -
Method Summary
Modifier and TypeMethodDescriptionabi()Returns the value of theabirecord component.address()Returns the value of theaddressrecord component.Returns the value of thecredentialsrecord component.static ContractAbifinal booleanIndicates whether some other object is "equal to" this one.getInfo()final inthashCode()Returns a hash code value for this object.sdk()Returns the value of thesdkrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface tech.deplant.java4ever.framework.contract.Contract
account, accountBalance, decodeMessageBoc, prepareCall, tvmPubkey
-
Constructor Details
-
TIP4Index
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
TIP4Index
-
TIP4Index
public TIP4Index(Sdk sdk, String address, Credentials credentials) throws com.fasterxml.jackson.core.JsonProcessingException - Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
TIP4Index
Creates an instance of aTIP4Indexrecord class.- Parameters:
sdk- the value for thesdkrecord componentaddress- the value for theaddressrecord componentabi- the value for theabirecord componentcredentials- the value for thecredentialsrecord component
-
-
Method Details
-
DEFAULT_ABI
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
getInfo
-
destruct
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
sdk
Returns the value of thesdkrecord component. -
address
Returns the value of theaddressrecord component. -
abi
Returns the value of theabirecord component. -
credentials
Returns the value of thecredentialsrecord component.- Specified by:
credentialsin interfaceContract- Returns:
- the value of the
credentialsrecord component
-