Record Class AzureMessages
java.lang.Object
java.lang.Record
com.flowable.agent.engine.impl.model.external.azure.client.AzureMessages
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordstatic final recordstatic final record -
Constructor Summary
ConstructorsConstructorDescriptionAzureMessages(String object, String firstId, String lastId, List<AzureMessages.MessageContent> data) Creates an instance of aAzureMessagesrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondata()Returns the value of thedatarecord component.final booleanIndicates whether some other object is "equal to" this one.firstId()Returns the value of thefirstIdrecord component.final inthashCode()Returns a hash code value for this object.lastId()Returns the value of thelastIdrecord component.object()Returns the value of theobjectrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AzureMessages
public AzureMessages(String object, String firstId, String lastId, List<AzureMessages.MessageContent> data) Creates an instance of aAzureMessagesrecord class.- Parameters:
object- the value for theobjectrecord componentfirstId- the value for thefirstIdrecord componentlastId- the value for thelastIdrecord componentdata- the value for thedatarecord 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). -
object
Returns the value of theobjectrecord component.- Returns:
- the value of the
objectrecord component
-
firstId
Returns the value of thefirstIdrecord component.- Returns:
- the value of the
firstIdrecord component
-
lastId
Returns the value of thelastIdrecord component.- Returns:
- the value of the
lastIdrecord component
-
data
Returns the value of thedatarecord component.- Returns:
- the value of the
datarecord component
-