net.hasor.db.jsqlparser.expression.JdbcParameter Maven / Gradle / Ivy
The newest version!
/*-
* #%L
* JSQLParser library
* %%
* Copyright (C) 2004 - 2019 JSQLParser
* %%
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
* #L%
*/
package net.sf.jsqlparser.expression;
import net.sf.jsqlparser.parser.ASTNodeAccessImpl;
/**
* A '?' in a statement or a ? e.g. ?4
*/
public class JdbcParameter extends ASTNodeAccessImpl implements Expression {
private Integer index;
private boolean useFixedIndex = false;
public JdbcParameter() {
}
public JdbcParameter(Integer index, boolean useFixedIndex) {
this.index = index;
this.useFixedIndex = useFixedIndex;
}
public Integer getIndex() {
return index;
}
public void setIndex(Integer index) {
this.index = index;
}
public boolean isUseFixedIndex() {
return useFixedIndex;
}
public void setUseFixedIndex(boolean useFixedIndex) {
this.useFixedIndex = useFixedIndex;
}
@Override
public void accept(ExpressionVisitor expressionVisitor) {
expressionVisitor.visit(this);
}
@Override
public String toString() {
return useFixedIndex ? "?" + index : "?";
}
}