ParameterInfopublic class ParameterInfo extends Object
Fields Summary |
---|
private final int | indexParameter index.
The index corresponds to JDO QL parameters. | private final int | typeParameter type. See FieldTypeEnumeration for possible values. | private final String | associatedFieldAssociated field to a parameter for runtime processing.
This is defined if and only if the corresponding subfilter is of
the form: field [relational op] _jdoParam or
_jdoParam [relational op] field
Otherwise, this is null. |
Constructors Summary |
---|
public ParameterInfo(int index, int type)Constructor
this(index, type, null);
| public ParameterInfo(int index, int type, String associatedField)Constructs a new ParameterInfo with the specified index, type and
associatedField.
this.index = index;
this.type = type;
this.associatedField = associatedField;
|
Methods Summary |
---|
public java.lang.String | getAssociatedField()
return associatedField;
| public int | getIndex()Returns the parameter index.
return index;
| public int | getType()Returns the parameter type. See FieldTypeEnumeration for possible values.
return type;
|
|