Record Class BrowseQueue.BrowseQueueModel
java.lang.Object
java.lang.Record
org.frankframework.console.controllers.BrowseQueue.BrowseQueueModel
- Enclosing class:
BrowseQueue
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconnectionFactory
record component.Returns the value of thedestination
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thelookupDestination
record component.payload()
Returns the value of thepayload
record component.Returns the value of therowNumbersOnly
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Constructor Details
-
BrowseQueueModel
public BrowseQueueModel(String connectionFactory, String destination, String type, Boolean rowNumbersOnly, Boolean payload, Boolean lookupDestination) Creates an instance of aBrowseQueueModel
record class.- Parameters:
connectionFactory
- the value for theconnectionFactory
record componentdestination
- the value for thedestination
record componenttype
- the value for thetype
record componentrowNumbersOnly
- the value for therowNumbersOnly
record componentpayload
- the value for thepayload
record componentlookupDestination
- the value for thelookupDestination
record 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)
. -
connectionFactory
Returns the value of theconnectionFactory
record component.- Returns:
- the value of the
connectionFactory
record component
-
destination
Returns the value of thedestination
record component.- Returns:
- the value of the
destination
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
rowNumbersOnly
Returns the value of therowNumbersOnly
record component.- Returns:
- the value of the
rowNumbersOnly
record component
-
payload
Returns the value of thepayload
record component.- Returns:
- the value of the
payload
record component
-
lookupDestination
Returns the value of thelookupDestination
record component.- Returns:
- the value of the
lookupDestination
record component
-