Package com.mckoi.database
Class ParameterSubstitution
- java.lang.Object
-
- com.mckoi.database.ParameterSubstitution
-
- All Implemented Interfaces:
java.io.Serializable
public class ParameterSubstitution extends java.lang.Object implements java.io.Serializable
An object that represents a constant value that is to be lately binded to a constant value in an Expression. This is used when we have ? style prepared statement values. This object is used as a marker in the elements of a expression.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private int
parameter_id
The numerical number of this parameter substitution.(package private) static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ParameterSubstitution(int parameter_id)
Creates the substitution.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object ob)
Equality test.int
getID()
Returns the number of this parameter id.
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
- See Also:
- Constant Field Values
-
parameter_id
private int parameter_id
The numerical number of this parameter substitution. The first substitution is '0', the second is '1', etc.
-
-