Package io.camunda.service.search.query
Record Class FlowNodeInstanceQuery
java.lang.Object
java.lang.Record
io.camunda.service.search.query.FlowNodeInstanceQuery
- All Implemented Interfaces:
SearchQueryBase,TypedSearchQuery<FlowNodeInstanceFilter,FlowNodeInstanceSort>
public record FlowNodeInstanceQuery(FlowNodeInstanceFilter filter, FlowNodeInstanceSort sort, SearchQueryPage page)
extends Record
implements TypedSearchQuery<FlowNodeInstanceFilter,FlowNodeInstanceSort>
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface io.camunda.service.search.query.SearchQueryBase
SearchQueryBase.AbstractQueryBuilder<T extends SearchQueryBase.AbstractQueryBuilder<T>> -
Constructor Summary
ConstructorsConstructorDescriptionFlowNodeInstanceQuery(FlowNodeInstanceFilter filter, FlowNodeInstanceSort sort, SearchQueryPage page) Creates an instance of aFlowNodeInstanceQueryrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.filter()Returns the value of thefilterrecord component.final inthashCode()Returns a hash code value for this object.page()Returns the value of thepagerecord component.sort()Returns the value of thesortrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface io.camunda.service.search.query.TypedSearchQuery
resultConfig
-
Constructor Details
-
FlowNodeInstanceQuery
public FlowNodeInstanceQuery(FlowNodeInstanceFilter filter, FlowNodeInstanceSort sort, SearchQueryPage page) Creates an instance of aFlowNodeInstanceQueryrecord class.- Parameters:
filter- the value for thefilterrecord componentsort- the value for thesortrecord componentpage- the value for thepagerecord 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). -
filter
Returns the value of thefilterrecord component.- Specified by:
filterin interfaceTypedSearchQuery<FlowNodeInstanceFilter,FlowNodeInstanceSort> - Returns:
- the value of the
filterrecord component
-
sort
Returns the value of thesortrecord component.- Specified by:
sortin interfaceTypedSearchQuery<FlowNodeInstanceFilter,FlowNodeInstanceSort> - Returns:
- the value of the
sortrecord component
-
page
Returns the value of thepagerecord component.- Specified by:
pagein interfaceSearchQueryBase- Returns:
- the value of the
pagerecord component
-