Record Class ProcessVariableKey
java.lang.Object
java.lang.Record
org.activiti.cloud.services.query.model.ProcessVariableKey
-
Constructor Summary
ConstructorsConstructorDescriptionProcessVariableKey(String processDefinitionKey, String variableName) Creates an instance of aProcessVariableKeyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.static ProcessVariableKeyfromString(String processVariableKey) final inthashCode()Returns a hash code value for this object.Returns the value of theprocessDefinitionKeyrecord component.final StringtoString()Returns a string representation of this record class.static StringtoString(ProcessVariableKey processVariableKey) Returns the value of thevariableNamerecord component.
-
Constructor Details
-
ProcessVariableKey
Creates an instance of aProcessVariableKeyrecord class.- Parameters:
processDefinitionKey- the value for theprocessDefinitionKeyrecord componentvariableName- the value for thevariableNamerecord component
-
-
Method Details
-
fromString
-
toString
-
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). -
processDefinitionKey
Returns the value of theprocessDefinitionKeyrecord component.- Returns:
- the value of the
processDefinitionKeyrecord component
-
variableName
Returns the value of thevariableNamerecord component.- Returns:
- the value of the
variableNamerecord component
-