Record Class BrowseJdbcTable.BrowseJdbcModel
java.lang.Object
java.lang.Record
org.frankframework.console.controllers.BrowseJdbcTable.BrowseJdbcModel
- Enclosing class:
BrowseJdbcTable
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedatasourcerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.maxRow()Returns the value of themaxRowrecord component.minRow()Returns the value of theminRowrecord component.Returns the value of thenumberOfRowsOnlyrecord component.order()Returns the value of theorderrecord component.table()Returns the value of thetablerecord component.final StringtoString()Returns a string representation of this record class.where()Returns the value of thewhererecord component.
-
Constructor Details
-
BrowseJdbcModel
public BrowseJdbcModel(String datasource, String table, String where, String order, Boolean numberOfRowsOnly, Integer minRow, Integer maxRow) Creates an instance of aBrowseJdbcModelrecord class.- Parameters:
datasource- the value for thedatasourcerecord componenttable- the value for thetablerecord componentwhere- the value for thewhererecord componentorder- the value for theorderrecord componentnumberOfRowsOnly- the value for thenumberOfRowsOnlyrecord componentminRow- the value for theminRowrecord componentmaxRow- the value for themaxRowrecord 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). -
datasource
Returns the value of thedatasourcerecord component.- Returns:
- the value of the
datasourcerecord component
-
table
Returns the value of thetablerecord component.- Returns:
- the value of the
tablerecord component
-
where
Returns the value of thewhererecord component.- Returns:
- the value of the
whererecord component
-
order
Returns the value of theorderrecord component.- Returns:
- the value of the
orderrecord component
-
numberOfRowsOnly
Returns the value of thenumberOfRowsOnlyrecord component.- Returns:
- the value of the
numberOfRowsOnlyrecord component
-
minRow
Returns the value of theminRowrecord component.- Returns:
- the value of the
minRowrecord component
-
maxRow
Returns the value of themaxRowrecord component.- Returns:
- the value of the
maxRowrecord component
-