Record Class RLSCSVResult
java.lang.Object
java.lang.Record
fr.inria.rules.integraal.io.csv.RLSCSVResult
- Record Components:
predicateName- the predicate name declared by the linepredicateArity- the predicate arity declared by the linecsvFilepath- the CSV file referenced by the line
-
Constructor Summary
ConstructorsConstructorDescriptionRLSCSVResult(String predicateName, int predicateArity, String csvFilepath) Creates an instance of aRLSCSVResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecsvFilepathrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of thepredicateArityrecord component.Returns the value of thepredicateNamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
RLSCSVResult
Creates an instance of aRLSCSVResultrecord class.- Parameters:
predicateName- the value for thepredicateNamerecord componentpredicateArity- the value for thepredicateArityrecord componentcsvFilepath- the value for thecsvFilepathrecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
predicateName
Returns the value of thepredicateNamerecord component.- Returns:
- the value of the
predicateNamerecord component
-
predicateArity
public int predicateArity()Returns the value of thepredicateArityrecord component.- Returns:
- the value of the
predicateArityrecord component
-
csvFilepath
Returns the value of thecsvFilepathrecord component.- Returns:
- the value of the
csvFilepathrecord component
-