Package app.ductape.sdk.graph.types
Record Class GraphTypes.FindNodesOptions
java.lang.Object
java.lang.Record
app.ductape.sdk.graph.types.GraphTypes.FindNodesOptions
- Enclosing class:
- GraphTypes
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncache()Returns the value of thecacherecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.labels()Returns the value of thelabelsrecord component.limit()Returns the value of thelimitrecord component.offset()Returns the value of theoffsetrecord component.orderBy()Returns the value of theorderByrecord component.select()Returns the value of theselectrecord component.skip()Returns the value of theskiprecord component.final StringtoString()Returns a string representation of this record class.where()Returns the value of thewhererecord component.
-
Constructor Details
-
FindNodesOptions
public FindNodesOptions(List<String> labels, Map<String, Object> where, Integer limit, Integer offset, Integer skip, List<GraphTypes.GraphOrderBy> orderBy, List<String> select, String cache) Creates an instance of aFindNodesOptionsrecord class.- Parameters:
labels- the value for thelabelsrecord componentwhere- the value for thewhererecord componentlimit- the value for thelimitrecord componentoffset- the value for theoffsetrecord componentskip- the value for theskiprecord componentorderBy- the value for theorderByrecord componentselect- the value for theselectrecord componentcache- the value for thecacherecord 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). -
labels
Returns the value of thelabelsrecord component.- Returns:
- the value of the
labelsrecord component
-
where
Returns the value of thewhererecord component.- Returns:
- the value of the
whererecord component
-
limit
Returns the value of thelimitrecord component.- Returns:
- the value of the
limitrecord component
-
offset
Returns the value of theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-
skip
Returns the value of theskiprecord component.- Returns:
- the value of the
skiprecord component
-
orderBy
Returns the value of theorderByrecord component.- Returns:
- the value of the
orderByrecord component
-
select
Returns the value of theselectrecord component.- Returns:
- the value of the
selectrecord component
-
cache
Returns the value of thecacherecord component.- Returns:
- the value of the
cacherecord component
-