Record Class AbstractGraphQuery.QueryResult<R>
java.lang.Object
java.lang.Record
com.flowable.microsoft.graph.impl.AbstractGraphQuery.QueryResult<R>
- Enclosing class:
AbstractGraphQuery<T extends org.flowable.common.engine.api.query.Query<?,?>, U>
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedQueryResult(List<R> results, long count, String nextLink) Creates an instance of aQueryResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionlongcount()Returns the value of thecountrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.nextLink()Returns the value of thenextLinkrecord component.results()Returns the value of theresultsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
QueryResult
Creates an instance of aQueryResultrecord class.- Parameters:
results- the value for theresultsrecord componentcount- the value for thecountrecord componentnextLink- the value for thenextLinkrecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
results
Returns the value of theresultsrecord component.- Returns:
- the value of the
resultsrecord component
-
count
public long count()Returns the value of thecountrecord component.- Returns:
- the value of the
countrecord component
-
nextLink
Returns the value of thenextLinkrecord component.- Returns:
- the value of the
nextLinkrecord component
-