Module fr.boreal.backward_chaining
Record Class RewritingInput
java.lang.Object
java.lang.Record
fr.boreal.backward_chaining.evaluators.RewritingInput
public record RewritingInput(FOQuery query, RuleBase rules, RuleCompilation compilation)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionRewritingInput(FOQuery 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
Returns the value of thequeryrecord component.- Returns:
- the value of the
queryrecord component
-
rules
Returns the value of therulesrecord component.- Returns:
- the value of the
rulesrecord component
-
compilation
Returns the value of thecompilationrecord component.- Returns:
- the value of the
compilationrecord component
-