Package liquibase.datatype.core
Class DecimalType
java.lang.Object
liquibase.datatype.LiquibaseDataType
liquibase.datatype.core.DecimalType
- All Implemented Interfaces:
PrioritizedService
-
Field Summary
Fields inherited from interface liquibase.servicelocator.PrioritizedService
COMPARATOR, PRIORITY_DATABASE, PRIORITY_DEFAULT
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns one of the four basic data types for use in LoadData: BOOLEAN, NUMERIC, DATE or STRINGboolean
void
setAutoIncrement
(boolean autoIncrement) toDatabaseDataType
(Database database) Transforms this data type into the native data type of the target DBMS.Methods inherited from class liquibase.datatype.LiquibaseDataType
addParameter, equals, finishInitialization, formatNumber, functionToSql, getAdditionalInformation, getAliases, getMaxParameters, getMinParameters, getName, getParameters, getPriority, getRawDefinition, hashCode, isCurrentDateTimeFunction, numberToSql, objectToSql, otherToSql, setAdditionalInformation, sqlToObject, supports, toString, validate
-
Constructor Details
-
DecimalType
public DecimalType()
-
-
Method Details
-
isAutoIncrement
public boolean isAutoIncrement()- Overrides:
isAutoIncrement
in classLiquibaseDataType
-
setAutoIncrement
public void setAutoIncrement(boolean autoIncrement) -
getLoadTypeName
Description copied from class:LiquibaseDataType
Returns one of the four basic data types for use in LoadData: BOOLEAN, NUMERIC, DATE or STRING- Specified by:
getLoadTypeName
in classLiquibaseDataType
- Returns:
- one of the above Strings
-
toDatabaseDataType
Description copied from class:LiquibaseDataType
Transforms this data type into the native data type of the target DBMS.- Overrides:
toDatabaseDataType
in classLiquibaseDataType
- Parameters:
database
- theDatabase
for which the native data type is to be constructed- Returns:
- the new, native data type
-