-
- All Implemented Interfaces:
public final class PseudoColumn
Wrapper for results of getPseudoColumns
-
-
Field Summary
Fields Modifier and Type Field Description private final String
catalog
private final String
schema
private final String
tableName
private final String
name
private final JDBCType
dataType
private final Integer
columnSize
private final Integer
decimalDigits
private final Integer
radix
private final PseudoColumnUsage
columnUsage
private final String
remarks
private final Integer
characterOctetLength
private final IsNullable
isNullable
-
Constructor Summary
Constructors Constructor Description PseudoColumn(ResultSet rs)
-
Method Summary
Modifier and Type Method Description final String
getCatalog()
Catalog final String
getSchema()
Schema final String
getTableName()
Table name final String
getName()
Name final JDBCType
getDataType()
SQL type, converted to JDBCType final Integer
getColumnSize()
Column size final Integer
getDecimalDigits()
The number of fractional digits final Integer
getRadix()
Numeric precision radix final PseudoColumnUsage
getColumnUsage()
Column usage, converted to PseudoColumnUsage final String
getRemarks()
Remarks final Integer
getCharacterOctetLength()
Character octet length final IsNullable
isNullable()
Is nullable, converted to IsNullable Boolean
equals(Object other)
Integer
hashCode()
-
-
Constructor Detail
-
PseudoColumn
PseudoColumn(ResultSet rs)
-
-
Method Detail
-
getCatalog
final String getCatalog()
Catalog
-
getTableName
final String getTableName()
Table name
-
getDataType
final JDBCType getDataType()
SQL type, converted to JDBCType
-
getColumnSize
final Integer getColumnSize()
Column size
-
getDecimalDigits
final Integer getDecimalDigits()
The number of fractional digits
-
getColumnUsage
final PseudoColumnUsage getColumnUsage()
Column usage, converted to PseudoColumnUsage
-
getRemarks
final String getRemarks()
Remarks
-
getCharacterOctetLength
final Integer getCharacterOctetLength()
Character octet length
-
isNullable
final IsNullable isNullable()
Is nullable, converted to IsNullable
-
-
-
-