Class ParameterInfo
- java.lang.Object
-
- com.sun.jdo.spi.persistence.utility.ParameterInfo
-
public class ParameterInfo extends Object
-
-
Constructor Summary
Constructors Constructor Description ParameterInfo(int index, int type)ConstructorParameterInfo(int index, int type, String associatedField)Constructs a new ParameterInfo with the specified index, type and associatedField.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAssociatedField()Returns the associated field.intgetIndex()Returns the parameter index.intgetType()Returns the parameter type.
-
-
-
Constructor Detail
-
ParameterInfo
public ParameterInfo(int index, int type)Constructor
-
ParameterInfo
public ParameterInfo(int index, int type, String associatedField)Constructs a new ParameterInfo with the specified index, type and associatedField.- Parameters:
index-type-associatedField-
-
-
Method Detail
-
getIndex
public int getIndex()
Returns the parameter index.
-
getType
public int getType()
Returns the parameter type. See FieldTypeEnumeration for possible values.
-
getAssociatedField
public String getAssociatedField()
Returns the associated field.
-
-