Package io.camunda.tasklist
Record Class TasklistClient.VariableSearch
java.lang.Object
java.lang.Record
io.camunda.tasklist.TasklistClient.VariableSearch
- Enclosing interface:
TasklistClient
public static record TasklistClient.VariableSearch(List<String> variableNames, List<TasklistClient.IncludeVariable> includeVariables)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionVariableSearch(List<String> variableNames, List<TasklistClient.IncludeVariable> includeVariables) Creates an instance of aVariableSearchrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theincludeVariablesrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thevariableNamesrecord component.
-
Constructor Details
-
VariableSearch
public VariableSearch(List<String> variableNames, List<TasklistClient.IncludeVariable> includeVariables) Creates an instance of aVariableSearchrecord class.- Parameters:
variableNames- the value for thevariableNamesrecord componentincludeVariables- the value for theincludeVariablesrecord 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). -
variableNames
Returns the value of thevariableNamesrecord component.- Returns:
- the value of the
variableNamesrecord component
-
includeVariables
Returns the value of theincludeVariablesrecord component.- Returns:
- the value of the
includeVariablesrecord component
-