Package app.ductape.sdk.graph.types
Record Class GraphTypes.RawQueryOptions
java.lang.Object
java.lang.Record
app.ductape.sdk.graph.types.GraphTypes.RawQueryOptions
- Enclosing class:
- GraphTypes
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionenv()Returns the value of theenvrecord component.final booleanIndicates whether some other object is "equal to" this one.graph()Returns the value of thegraphrecord component.final inthashCode()Returns a hash code value for this object.params()Returns the value of theparamsrecord component.query()Returns the value of thequeryrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
RawQueryOptions
Creates an instance of aRawQueryOptionsrecord class.- Parameters:
query- the value for thequeryrecord componentparams- the value for theparamsrecord componentenv- the value for theenvrecord componentgraph- the value for thegraphrecord 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). -
query
Returns the value of thequeryrecord component.- Returns:
- the value of the
queryrecord component
-
params
Returns the value of theparamsrecord component.- Returns:
- the value of the
paramsrecord component
-
env
Returns the value of theenvrecord component.- Returns:
- the value of the
envrecord component
-
graph
Returns the value of thegraphrecord component.- Returns:
- the value of the
graphrecord component
-