Record Class StatementVariable

java.lang.Object
java.lang.Record
org.tquadrat.foundation.sql.internal.StatementVariable
Record Components:
name - The name of the variable.
position - The position for this variable in the PreparedStatement.
All Implemented Interfaces:
Serializable

@ClassVersion(sourceVersion="$Id: StatementVariable.java 1020 2022-02-27 21:26:03Z tquadrat $") @API(status=INTERNAL, since="0.0.1") public record StatementVariable(String name, int position) extends Record implements Serializable
A variable for an EnhancedPreparedStatement.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: StatementVariable.java 1020 2022-02-27 21:26:03Z tquadrat $
Since:
0.0.1
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.sql.internal.StatementVariable"

UML Diagram for "org.tquadrat.foundation.sql.internal.StatementVariable"

UML Diagram for "org.tquadrat.foundation.sql.internal.StatementVariable"
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final String
    The field for the name record component.
    private final int
    The field for the position record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    StatementVariable(String name, int position)
    Creates an instance of a StatementVariable 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.
    Returns the value of the name record component.
    int
    Returns the value of the position record component.
    final String

    Methods inherited from class java.lang.Object

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

    • name

      private final String name
      The field for the name record component.
    • position

      private final int position
      The field for the position record component.
  • Constructor Details

    • StatementVariable

      public StatementVariable(String name, int position)
      Creates an instance of a StatementVariable record class.
      Parameters:
      name - the value for the name record component
      position - the value for the position record component
  • Method Details

    • toString

      public final String toString()
      Specified by:
      toString in class Record
    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components 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.
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • position

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