Record Class SQLParameterizedQuery
java.lang.Object
java.lang.Record
fr.inria.rules.integraal.storage.external.rdbms.SQLParameterizedQuery
- Record Components:
query- the parameterized SQL queryarguments- the parameter values bound to the query
-
Constructor Summary
ConstructorsConstructorDescriptionSQLParameterizedQuery(String query, List<Object> arguments) Creates a new parameterized SQL query record. -
Method Summary
Modifier and TypeMethodDescriptionReturns the parameter values bound to the query.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.query()Returns the SQL query text.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SQLParameterizedQuery
-
-
Method Details
-
query
-
arguments
-
toString
-
hashCode
-
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).
-