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 thedatasource
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.maxRow()
Returns the value of themaxRow
record component.minRow()
Returns the value of theminRow
record component.Returns the value of thenumberOfRowsOnly
record component.order()
Returns the value of theorder
record component.table()
Returns the value of thetable
record component.final String
toString()
Returns a string representation of this record class.where()
Returns the value of thewhere
record component.
-
Constructor Details
-
BrowseJdbcModel
public BrowseJdbcModel(String datasource, String table, String where, String order, Boolean numberOfRowsOnly, Integer minRow, Integer maxRow) Creates an instance of aBrowseJdbcModel
record class.- Parameters:
datasource
- the value for thedatasource
record componenttable
- the value for thetable
record componentwhere
- the value for thewhere
record componentorder
- the value for theorder
record componentnumberOfRowsOnly
- the value for thenumberOfRowsOnly
record componentminRow
- the value for theminRow
record componentmaxRow
- the value for themaxRow
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)
. -
datasource
Returns the value of thedatasource
record component.- Returns:
- the value of the
datasource
record component
-
table
Returns the value of thetable
record component.- Returns:
- the value of the
table
record component
-
where
Returns the value of thewhere
record component.- Returns:
- the value of the
where
record component
-
order
Returns the value of theorder
record component.- Returns:
- the value of the
order
record component
-
numberOfRowsOnly
Returns the value of thenumberOfRowsOnly
record component.- Returns:
- the value of the
numberOfRowsOnly
record component
-
minRow
Returns the value of theminRow
record component.- Returns:
- the value of the
minRow
record component
-
maxRow
Returns the value of themaxRow
record component.- Returns:
- the value of the
maxRow
record component
-