| Package | Description |
|---|---|
| org.assertj.db.type |
This package contains the classes that defines the different types used in assertj-db.
|
| Modifier and Type | Method and Description |
|---|---|
static Table.Order |
Table.Order.asc(String name)
Builds an ascending order.
|
static Table.Order |
Table.Order.desc(String name)
Builds the descending order.
|
Table.Order[] |
Table.getColumnsToOrder()
Returns the columns to order (which are used in
ORDER BY). |
| Modifier and Type | Method and Description |
|---|---|
Table |
Table.setColumnsToOrder(Table.Order[] columnsToOrder)
Sets the columns to order (which are used in
ORDER BY). |
| Constructor and Description |
|---|
Table(DataSource dataSource,
String name,
Character startDelimiter,
Character endDelimiter,
Table.Order[] columnsToOrder)
Constructor with a dataSource and the name of the table.
|
Table(DataSource dataSource,
String name,
Character startDelimiter,
Character endDelimiter,
Table.Order[] columnsToOrder,
String[] columnsToCheck,
String[] columnsToExclude)
Constructor with a connection, the name of the table and the columns to check and to exclude.
|
Table(DataSource dataSource,
String name,
Table.Order[] columnsToOrder)
Constructor with a dataSource and the name of the table.
|
Table(DataSource dataSource,
String name,
Table.Order[] columnsToOrder,
String[] columnsToCheck,
String[] columnsToExclude)
Constructor with a connection, the name of the table and the columns to check and to exclude.
|
Table(Source source,
String name,
Character startDelimiter,
Character endDelimiter,
Table.Order[] columnsToOrder)
Constructor with a
Source and the name of the table. |
Table(Source source,
String name,
Character startDelimiter,
Character endDelimiter,
Table.Order[] columnsToOrder,
String[] columnsToCheck,
String[] columnsToExclude)
Constructor with a
Source, the name of the table and the columns to check and to exclude. |
Table(Source source,
String name,
Table.Order[] columnsToOrder)
Constructor with a
Source and the name of the table. |
Table(Source source,
String name,
Table.Order[] columnsToOrder,
String[] columnsToCheck,
String[] columnsToExclude)
Constructor with a
Source, the name of the table and the columns to check and to exclude. |
Copyright © 2015–2017 AssertJ. All rights reserved.