Record Class Boc.ResultOfDecodeTvc

java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Boc.ResultOfDecodeTvc
Record Components:
code - Contract code BOC encoded as base64 or BOC handle
codeHash - Contract code hash
codeDepth - Contract code depth
data - Contract data BOC encoded as base64 or BOC handle
dataHash - Contract data hash
dataDepth - Contract data depth
library - Contract library BOC encoded as base64 or BOC handle
tick - Specifies the contract ability to handle tick transactions `special.tick` field.
tock - Specifies the contract ability to handle tock transactions `special.tock` field.
splitDepth - Is present and non-zero only in instances of large smart contracts
compilerVersion - Compiler version, for example 'sol 0.49.0'
Enclosing class:
Boc

public static record Boc.ResultOfDecodeTvc(String code, String codeHash, Integer codeDepth, String data, String dataHash, Integer dataDepth, String library, Boolean tick, Boolean tock, Integer splitDepth, String compilerVersion) extends Record
  • Constructor Details

    • ResultOfDecodeTvc

      public ResultOfDecodeTvc(String code, String codeHash, Integer codeDepth, String data, String dataHash, Integer dataDepth, String library, Boolean tick, Boolean tock, Integer splitDepth, String compilerVersion)
      Creates an instance of a ResultOfDecodeTvc record class.
      Parameters:
      code - the value for the code record component
      codeHash - the value for the codeHash record component
      codeDepth - the value for the codeDepth record component
      data - the value for the data record component
      dataHash - the value for the dataHash record component
      dataDepth - the value for the dataDepth record component
      library - the value for the library record component
      tick - the value for the tick record component
      tock - the value for the tock record component
      splitDepth - the value for the splitDepth record component
      compilerVersion - the value for the compilerVersion record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • code

      public String code()
      Returns the value of the code record component.
      Returns:
      the value of the code record component
    • codeHash

      public String codeHash()
      Returns the value of the codeHash record component.
      Returns:
      the value of the codeHash record component
    • codeDepth

      public Integer codeDepth()
      Returns the value of the codeDepth record component.
      Returns:
      the value of the codeDepth record component
    • data

      public String data()
      Returns the value of the data record component.
      Returns:
      the value of the data record component
    • dataHash

      public String dataHash()
      Returns the value of the dataHash record component.
      Returns:
      the value of the dataHash record component
    • dataDepth

      public Integer dataDepth()
      Returns the value of the dataDepth record component.
      Returns:
      the value of the dataDepth record component
    • library

      public String library()
      Returns the value of the library record component.
      Returns:
      the value of the library record component
    • tick

      public Boolean tick()
      Returns the value of the tick record component.
      Returns:
      the value of the tick record component
    • tock

      public Boolean tock()
      Returns the value of the tock record component.
      Returns:
      the value of the tock record component
    • splitDepth

      public Integer splitDepth()
      Returns the value of the splitDepth record component.
      Returns:
      the value of the splitDepth record component
    • compilerVersion

      public String compilerVersion()
      Returns the value of the compilerVersion record component.
      Returns:
      the value of the compilerVersion record component