Package io.camunda.service.search.query
Record Class UserTaskQuery
java.lang.Object
java.lang.Record
io.camunda.service.search.query.UserTaskQuery
- All Implemented Interfaces:
SearchQueryBase,TypedSearchQuery<UserTaskFilter,UserTaskSort>
public record UserTaskQuery(UserTaskFilter filter, UserTaskSort sort, SearchQueryPage page)
extends Record
implements TypedSearchQuery<UserTaskFilter,UserTaskSort>
-
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
ConstructorsConstructorDescriptionUserTaskQuery(UserTaskFilter filter, UserTaskSort sort, SearchQueryPage page) Creates an instance of aUserTaskQueryrecord 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.static UserTaskQuerypage()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
-
UserTaskQuery
Creates an instance of aUserTaskQueryrecord class.- Parameters:
filter- the value for thefilterrecord componentsort- the value for thesortrecord componentpage- the value for thepagerecord component
-
-
Method Details
-
of
-
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<UserTaskFilter,UserTaskSort> - Returns:
- the value of the
filterrecord component
-
sort
Returns the value of thesortrecord component.- Specified by:
sortin interfaceTypedSearchQuery<UserTaskFilter,UserTaskSort> - 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
-