Class ParameterColumnMetadata

java.lang.Object
org.eclipse.dirigible.database.api.metadata.ParameterColumnMetadata

public class ParameterColumnMetadata
extends Object
The Procedure Column Metadata transport object.
  • 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 - name
      kind - kind
      type - type
      precision - precision
      length - length
      scale - scale
      radix - radix
      nullable - nullable
      remarks - remarks
  • Method Details

    • getName

      public String getName()
      Get the metadata name.
      Returns:
      the name
    • setName

      public void setName​(String name)
      Set the metadata name.
      Parameters:
      name - the name to set
    • getKind

      public int getKind()
      Get the metadata kind.
      Returns:
      the kind
    • setKind

      public void setKind​(int kind)
      Set the metadata kind.
      Parameters:
      kind - the kind to set
    • getType

      public String getType()
      Get the metadata type.
      Returns:
      the type
    • setType

      public void setType​(String type)
      Set the metadata type.
      Parameters:
      type - the type to set
    • getPrecision

      public int getPrecision()
      Get the metadata precision.
      Returns:
      the precision
    • setPrecision

      public void setPrecision​(int precision)
      Set the metadata precision.
      Parameters:
      precision - the precision to set
    • getLength

      public int getLength()
      Get the metadata length.
      Returns:
      the length
    • setLength

      public void setLength​(int length)
      Set the metadata length.
      Parameters:
      length - the length to set
    • getScale

      public int getScale()
      Get the metadata scale.
      Returns:
      the scale
    • setScale

      public void setScale​(int scale)
      Set the metadata scale.
      Parameters:
      scale - the scale to set
    • getRadix

      public int getRadix()
      Get the metadata radix.
      Returns:
      the radix
    • setRadix

      public void setRadix​(int radix)
      Set the metadata radix.
      Parameters:
      radix - the radix to set
    • getNullable

      public boolean getNullable()
      Get the metadata nullable.
      Returns:
      the nullable
    • setNullable

      public void setNullable​(boolean nullable)
      Set the metadata nullable.
      Parameters:
      nullable - the nullable to set
    • getRemarks

      public String getRemarks()
      Get the metadata remarks.
      Returns:
      the remarks
    • setRemarks

      public void setRemarks​(String remarks)
      Set the metadata remarks.
      Parameters:
      remarks - the remarks to set