-
- All Implemented Interfaces:
public final class FunctionColumn
Wrapper for results of getFunctionColumns method and represents a column of Function
-
-
Field Summary
Fields Modifier and Type Field Description private final String
catalog
private final String
schema
private final String
functionName
private final String
name
private final FunctionColumnType
columnType
private final JDBCType
dataType
private final String
typeName
private final Integer
precision
private final Integer
length
private final Integer
scale
private final Integer
radix
private final FunctionColumnNullable
nullable
private final String
remarks
private final Integer
characterOctetLength
private final Integer
ordinalPosition
private final IsNullable
isNullable
private final String
specificName
-
Constructor Summary
Constructors Constructor Description FunctionColumn(ResultSet rs)
-
Method Summary
Modifier and Type Method Description final String
getCatalog()
CatalogSource column: FUNCTION_CAT final String
getSchema()
SchemaSource column: FUNCTION_SCHEM final String
getFunctionName()
Function nameSource column: FUNCTION_NAME final String
getName()
NameSource column: COLUMN_NAME final FunctionColumnType
getColumnType()
Column type, converted to FunctionColumnTypeSource column: COLUMN_TYPE final JDBCType
getDataType()
SQL type from java.sql.Types, converted from intSource column: DATA_TYPE final String
getTypeName()
Type nameSource column: TYPE_NAME final Integer
getPrecision()
PrecisionSource column: PRECISION final Integer
getLength()
LengthSource column: LENGTH final Integer
getScale()
ScaleSource column: SCALE final Integer
getRadix()
RadixSource column: RADIX final FunctionColumnNullable
getNullable()
Nullable, converted to FunctionColumnNullableSource column: NULLABLE final String
getRemarks()
RemarksSource column: REMARKS final Integer
getCharacterOctetLength()
Character octet lengthSource column: CHAR_OCTET_LENGTH final Integer
getOrdinalPosition()
Ordinal positionSource column: ORDINAL_POSITION final IsNullable
isNullable()
Is nullable, converted to IsNullableSource column: IS_NULLABLE final String
getSpecificName()
Specific nameSource column: SPECIFIC_NAME Boolean
equals(Object other)
Integer
hashCode()
-
-
Constructor Detail
-
FunctionColumn
FunctionColumn(ResultSet rs)
-
-
Method Detail
-
getCatalog
final String getCatalog()
Catalog
Source column: FUNCTION_CAT
-
getFunctionName
final String getFunctionName()
Function name
Source column: FUNCTION_NAME
-
getColumnType
final FunctionColumnType getColumnType()
Column type, converted to FunctionColumnType
Source column: COLUMN_TYPE
-
getDataType
final JDBCType getDataType()
SQL type from java.sql.Types, converted from int
Source column: DATA_TYPE
-
getTypeName
final String getTypeName()
Type name
Source column: TYPE_NAME
-
getPrecision
final Integer getPrecision()
Precision
Source column: PRECISION
-
getNullable
final FunctionColumnNullable getNullable()
Nullable, converted to FunctionColumnNullable
Source column: NULLABLE
-
getRemarks
final String getRemarks()
Remarks
Source column: REMARKS
-
getCharacterOctetLength
final Integer getCharacterOctetLength()
Character octet length
Source column: CHAR_OCTET_LENGTH
-
getOrdinalPosition
final Integer getOrdinalPosition()
Ordinal position
Source column: ORDINAL_POSITION
-
isNullable
final IsNullable isNullable()
Is nullable, converted to IsNullable
Source column: IS_NULLABLE
-
getSpecificName
final String getSpecificName()
Specific name
Source column: SPECIFIC_NAME
-
-
-
-