Class ParameterColumnMetadata
java.lang.Object
org.eclipse.dirigible.database.api.metadata.ParameterColumnMetadata
public class ParameterColumnMetadata extends Object
The Procedure Column Metadata transport object.
-
Constructor Summary
Constructors Constructor Description ParameterColumnMetadata(String name, int kind, String type, int precision, int length, int scale, int radix, boolean nullable, String remarks)Procedure Column Metadata -
Method Summary
Modifier and Type Method Description intgetKind()intgetLength()StringgetName()booleangetNullable()intgetPrecision()intgetRadix()StringgetRemarks()intgetScale()StringgetType()voidsetKind(int kind)voidsetLength(int length)voidsetName(String name)voidsetNullable(boolean nullable)voidsetPrecision(int precision)voidsetRadix(int radix)voidsetRemarks(String remarks)voidsetScale(int scale)voidsetType(String type)
-
Constructor Details
-
ParameterColumnMetadata
public ParameterColumnMetadata(String name, int kind, String type, int precision, int length, int scale, int radix, boolean nullable, String remarks)Procedure Column Metadata- Parameters:
name- namekind- kindtype- typeprecision- precisionlength- lengthscale- scaleradix- radixnullable- nullableremarks- remarks
-
-
Method Details
-
getName
- Returns:
- the name
-
setName
- Parameters:
name- the name to set
-
getKind
public int getKind()- Returns:
- the kind
-
setKind
public void setKind(int kind)- Parameters:
kind- the kind to set
-
getType
- Returns:
- the type
-
setType
- Parameters:
type- the type to set
-
getPrecision
public int getPrecision()- Returns:
- the precision
-
setPrecision
public void setPrecision(int precision)- Parameters:
precision- the precision to set
-
getLength
public int getLength()- Returns:
- the length
-
setLength
public void setLength(int length)- Parameters:
length- the length to set
-
getScale
public int getScale()- Returns:
- the scale
-
setScale
public void setScale(int scale)- Parameters:
scale- the scale to set
-
getRadix
public int getRadix()- Returns:
- the radix
-
setRadix
public void setRadix(int radix)- Parameters:
radix- the radix to set
-
getNullable
public boolean getNullable()- Returns:
- the nullable
-
setNullable
public void setNullable(boolean nullable)- Parameters:
nullable- the nullable to set
-
getRemarks
- Returns:
- the remarks
-
setRemarks
- Parameters:
remarks- the remarks to set
-