-
- All Implemented Interfaces:
public final class VersionColumn
Wrapper for results of getVersionColumns
Note that per the documentation SCOPE is unused and has been left out of this class
-
-
Field Summary
Fields Modifier and Type Field Description private final String
columnName
private final JDBCType
dataType
private final String
typeName
private final Integer
columnSize
private final Integer
bufferLength
private final Integer
decimalDigits
private final VersionColumnType
pseudoColumn
-
Constructor Summary
Constructors Constructor Description VersionColumn(ResultSet rs)
-
Method Summary
Modifier and Type Method Description final String
getColumnName()
Column nameSource column: COLUMN_NAME final JDBCType
getDataType()
SQL type, converted to JDBCTypeSource column: DATA_TYPE final String
getTypeName()
Type nameSource column: TYPE_NAME final Integer
getColumnSize()
Column sizeSource column: COLUMN_SIZE final Integer
getBufferLength()
Buffer lengthSource column: BUFFER_LENGTH final Integer
getDecimalDigits()
The number of fractional digitsSource column: DECIMAL_DIGITS final VersionColumnType
getPseudoColumn()
Pseudo column, converted to VersionColumnTypeSource column: PSEUDO_COLUMN -
-
Constructor Detail
-
VersionColumn
VersionColumn(ResultSet rs)
-
-
Method Detail
-
getColumnName
final String getColumnName()
Column name
Source column: COLUMN_NAME
-
getDataType
final JDBCType getDataType()
SQL type, converted to JDBCType
Source column: DATA_TYPE
-
getTypeName
final String getTypeName()
Type name
Source column: TYPE_NAME
-
getColumnSize
final Integer getColumnSize()
Column size
Source column: COLUMN_SIZE
-
getBufferLength
final Integer getBufferLength()
Buffer length
Source column: BUFFER_LENGTH
-
getDecimalDigits
final Integer getDecimalDigits()
The number of fractional digits
Source column: DECIMAL_DIGITS
-
getPseudoColumn
final VersionColumnType getPseudoColumn()
Pseudo column, converted to VersionColumnType
Source column: PSEUDO_COLUMN
-
-
-
-