| org.netbeans.modules.sql.framework.model.SQLCastOperator
All known Subclasses: org.netbeans.modules.sql.framework.model.impl.SQLCastOperatorImpl,
SQLCastOperator | public interface SQLCastOperator extends SQLGenericOperator(Code) | | Definition of unique properties associated with a cast-ass operator
author: Jonathan Giron version: $Revision$ |
Method Summary | |
public int | getPrecision() Gets current precision/length value. | public int | getScale() Gets current scale value. | public void | setPrecision(int newValue) Sets precision to given value. | public void | setScale(int newValue) Sets scale to given value. |
getPrecision | public int getPrecision()(Code) | | Gets current precision/length value. Value may be meaningless if the current JDBC
type does not support a precision/length value.
current precision |
getScale | public int getScale()(Code) | | Gets current scale value. Value may be meaningless if the current JDBC type does
not support a scale value.
current scale |
setPrecision | public void setPrecision(int newValue)(Code) | | Sets precision to given value.
Parameters: newValue - new precision |
setScale | public void setScale(int newValue)(Code) | | Sets scale to given value.
Parameters: newValue - new value |
|
|