org.hibernate.engine.query.OrdinalParameterDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
package org.hibernate.engine.query;
import org.hibernate.type.Type;
import java.io.Serializable;
/**
* @author Steve Ebersole
*/
public class OrdinalParameterDescriptor implements Serializable {
private final int ordinalPosition;
private final Type expectedType;
private final int sourceLocation;
public OrdinalParameterDescriptor(int ordinalPosition, Type expectedType, int sourceLocation) {
this.ordinalPosition = ordinalPosition;
this.expectedType = expectedType;
this.sourceLocation = sourceLocation;
}
public int getOrdinalPosition() {
return ordinalPosition;
}
public Type getExpectedType() {
return expectedType;
}
public int getSourceLocation() {
return sourceLocation;
}
}