Package net.snowflake.client.jdbc
Class SnowflakeColumnMetadata
- java.lang.Object
-
- net.snowflake.client.jdbc.SnowflakeColumnMetadata
-
- All Implemented Interfaces:
Serializable
public class SnowflakeColumnMetadata extends Object implements Serializable
- Author:
- jhuang
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SnowflakeColumnMetadata(String name, int type, boolean nullable, int length, int precision, int scale, String typeName, boolean fixed, SnowflakeType base, String columnSrcDatabase, String columnSrcSchema, String columnSrcTable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SnowflakeTypegetBase()StringgetColumnSrcDatabase()StringgetColumnSrcSchema()StringgetColumnSrcTable()intgetLength()StringgetName()intgetPrecision()intgetScale()intgetType()StringgetTypeName()booleanisFixed()booleanisNullable()voidsetFixed(boolean fixed)voidsetLength(int length)voidsetName(String name)voidsetNullable(boolean nullable)voidsetPrecision(int precision)voidsetScale(int scale)voidsetType(int type)voidsetTypeName(String typeName)StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getType
public int getType()
-
setType
public void setType(int type)
-
isNullable
public boolean isNullable()
-
setNullable
public void setNullable(boolean nullable)
-
getLength
public int getLength()
-
setLength
public void setLength(int length)
-
getPrecision
public int getPrecision()
-
setPrecision
public void setPrecision(int precision)
-
getScale
public int getScale()
-
setScale
public void setScale(int scale)
-
getTypeName
public String getTypeName()
-
setTypeName
public void setTypeName(String typeName)
-
isFixed
public boolean isFixed()
-
setFixed
public void setFixed(boolean fixed)
-
getBase
public SnowflakeType getBase()
-
getColumnSrcTable
public String getColumnSrcTable()
-
getColumnSrcSchema
public String getColumnSrcSchema()
-
getColumnSrcDatabase
public String getColumnSrcDatabase()
-
-