Record Class Ed25519SignatureOffsets

java.lang.Object
java.lang.Record
software.sava.solana.programs.ed25519.Ed25519SignatureOffsets

public record Ed25519SignatureOffsets(int signatureOffset, int signatureInstructionIndex, int publicKeyOffset, int publicKeyInstructionIndex, int messageDataOffset, int messageDataSize, int messageInstructionIndex) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Ed25519SignatureOffsets(int signatureOffset, int signatureInstructionIndex, int publicKeyOffset, int publicKeyInstructionIndex, int messageDataOffset, int messageDataSize, int messageInstructionIndex)
    Creates an instance of a Ed25519SignatureOffsets record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the messageDataOffset record component.
    int
    Returns the value of the messageDataSize record component.
    int
    Returns the value of the messageInstructionIndex record component.
    int
    Returns the value of the publicKeyInstructionIndex record component.
    int
    Returns the value of the publicKeyOffset record component.
    read(byte[] data, int offset)
     
    readVector(byte[] data, int offset)
     
    int
    Returns the value of the signatureInstructionIndex record component.
    int
    Returns the value of the signatureOffset record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

  • Constructor Details

    • Ed25519SignatureOffsets

      public Ed25519SignatureOffsets(int signatureOffset, int signatureInstructionIndex, int publicKeyOffset, int publicKeyInstructionIndex, int messageDataOffset, int messageDataSize, int messageInstructionIndex)
      Creates an instance of a Ed25519SignatureOffsets record class.
      Parameters:
      signatureOffset - the value for the signatureOffset record component
      signatureInstructionIndex - the value for the signatureInstructionIndex record component
      publicKeyOffset - the value for the publicKeyOffset record component
      publicKeyInstructionIndex - the value for the publicKeyInstructionIndex record component
      messageDataOffset - the value for the messageDataOffset record component
      messageDataSize - the value for the messageDataSize record component
      messageInstructionIndex - the value for the messageInstructionIndex record component
  • Method Details

    • read

      public static Ed25519SignatureOffsets read(byte[] data, int offset)
    • readVector

      public static Ed25519SignatureOffsets[] readVector(byte[] data, int offset)
    • 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 '=='.
      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.
    • signatureOffset

      public int signatureOffset()
      Returns the value of the signatureOffset record component.
      Returns:
      the value of the signatureOffset record component
    • signatureInstructionIndex

      public int signatureInstructionIndex()
      Returns the value of the signatureInstructionIndex record component.
      Returns:
      the value of the signatureInstructionIndex record component
    • publicKeyOffset

      public int publicKeyOffset()
      Returns the value of the publicKeyOffset record component.
      Returns:
      the value of the publicKeyOffset record component
    • publicKeyInstructionIndex

      public int publicKeyInstructionIndex()
      Returns the value of the publicKeyInstructionIndex record component.
      Returns:
      the value of the publicKeyInstructionIndex record component
    • messageDataOffset

      public int messageDataOffset()
      Returns the value of the messageDataOffset record component.
      Returns:
      the value of the messageDataOffset record component
    • messageDataSize

      public int messageDataSize()
      Returns the value of the messageDataSize record component.
      Returns:
      the value of the messageDataSize record component
    • messageInstructionIndex

      public int messageInstructionIndex()
      Returns the value of the messageInstructionIndex record component.
      Returns:
      the value of the messageInstructionIndex record component