Record Class IndexDirective
java.lang.Object
java.lang.Record
org.aksw.jenax.graphql.sparql.v2.context.IndexDirective
@index(by: varOrVarArray[, expr: exprOverVars])
The idea is to allow ordering by a given list of variables, and have a separate expression for the effective output.
This may help a DBMS by not having to order by the final expression.
-
Constructor Summary
ConstructorsConstructorDescriptionIndexDirective(String keyExpr, List<String> indexExprs, String oneIf) Creates an instance of aIndexDirectiverecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theindexExprsrecord component.keyExpr()Returns the value of thekeyExprrecord component.oneIf()Returns the value of theoneIfrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IndexDirective
Creates an instance of aIndexDirectiverecord class.- Parameters:
keyExpr- the value for thekeyExprrecord componentindexExprs- the value for theindexExprsrecord componentoneIf- the value for theoneIfrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
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. -
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). -
keyExpr
Returns the value of thekeyExprrecord component.- Returns:
- the value of the
keyExprrecord component
-
indexExprs
Returns the value of theindexExprsrecord component.- Returns:
- the value of the
indexExprsrecord component
-
oneIf
Returns the value of theoneIfrecord component.- Returns:
- the value of the
oneIfrecord component
-