Record Class RewritingInput
java.lang.Object
java.lang.Record
fr.inria.rules.integraal.component_builder.evaluators.query_rewriting.auxiliary.RewritingInput
- Record Components:
query- the query to rewriterules- the rule base used for rewritingcompilation- the rule compilation to use
public record RewritingInput(Query query, RuleBase rules, RuleCompilation compilation)
extends Record
Input bundle for query rewriting.
-
Constructor Summary
ConstructorsConstructorDescriptionRewritingInput(Query query, RuleBase rules, RuleCompilation compilation) Creates an instance of aRewritingInputrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecompilationrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.query()Returns the value of thequeryrecord component.rules()Returns the value of therulesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
RewritingInput
Creates an instance of aRewritingInputrecord class.- Parameters:
query- the value for thequeryrecord componentrules- the value for therulesrecord componentcompilation- the value for thecompilationrecord component
-
-
Method Details
-
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). -
query
-
rules
-
compilation
Returns the value of thecompilationrecord component.- Returns:
- the value of the
compilationrecord component
-