FileDocCategorySizeDatePackage
InputParamValue.javaAPI DocGlassfish v2 API2770Fri May 04 22:35:16 BST 2007com.sun.jdo.spi.persistence.support.sqlstore.sql.generator

InputParamValue

public class InputParamValue extends InputValue
An extended InputValue which represents a query input parameter value. This class holds the index of the parameter, which is used to get the real value for binding the input parameter.

Fields Summary
Constructors Summary
public InputParamValue(Integer index, org.netbeans.modules.dbschema.ColumnElement columnElement)
Constructor.

param
index parameter index
param
columnElement The ColumnElment to which this parameter will be bound

        super(index, columnElement);
    
Methods Summary
public java.lang.IntegergetParamIndex()

        return (Integer) getValue();