Package org.assertj.db.type
Class Change
java.lang.Object
org.assertj.db.type.Change
- All Implemented Interfaces:
DbElement
,WithColumnLetterCase
,WithPrimaryKeyLetterCase
,WithTableLetterCase
public class Change
extends Object
implements DbElement, WithTableLetterCase, WithColumnLetterCase, WithPrimaryKeyLetterCase
Change in the database.
Note : you never instantiate directly this class. You will get an object of this class from a Changes
with the list by using Changes.getChangesList()
,
Changes.getChangesOfTable(String)
or Changes.getChangesOfType(ChangeType)
.
- Author:
- Régis Pouiller.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the type of the change.Returns the letter case of the columns.Returns the list of the column names.Returns the name of the data on which is the change.Returns the type of the data on which is the change.Return the list of the primary keys name.Return the list of the primary keys value.Returns the letter case of the primary keys.Returns the row at end point.Returns the row at start point.Returns the letter case of the tables.
-
Method Details
-
getColumnLetterCase
Returns the letter case of the columns.- Specified by:
getColumnLetterCase
in interfaceWithColumnLetterCase
- Returns:
- The letter case of the columns.
-
getPrimaryKeyLetterCase
Returns the letter case of the primary keys.- Specified by:
getPrimaryKeyLetterCase
in interfaceWithPrimaryKeyLetterCase
- Returns:
- The letter case of the primary keys.
-
getTableLetterCase
Returns the letter case of the tables.- Specified by:
getTableLetterCase
in interfaceWithTableLetterCase
- Returns:
- The letter case of the tables.
-
getDataType
Returns the type of the data on which is the change.- Returns:
- The type of the data on which is the change.
-
getDataName
Returns the name of the data on which is the change.- Returns:
- The name of the data on which is the change.
-
getPksNameList
Return the list of the primary keys name.- Returns:
- The list of the primary keys name.
-
getPksValueList
Return the list of the primary keys value.- Returns:
- The list of the primary keys value.
-
getColumnsNameList
Returns the list of the column names.- Returns:
- The list of the column names.
-
getChangeType
Returns the type of the change.- Returns:
- The type of the change.
-
getRowAtStartPoint
Returns the row at start point.- Returns:
- The row at start point.
-
getRowAtEndPoint
Returns the row at end point.- Returns:
- The row at end point.
-