net.sf.jsqlparser.statement.select.First Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsqlparser Show documentation
Show all versions of jsqlparser Show documentation
JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes.
The generated hierarchy can be navigated using the Visitor Pattern.
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.statement.select;
import net.sf.jsqlparser.expression.JdbcParameter;
import java.io.Serializable;
public class First implements Serializable {
private Keyword keyword;
private Long rowCount;
private JdbcParameter jdbcParameter;
private String variable;
public Long getRowCount() {
return rowCount;
}
public void setRowCount(Long rowCount) {
this.rowCount = rowCount;
}
public JdbcParameter getJdbcParameter() {
return jdbcParameter;
}
public void setJdbcParameter(JdbcParameter jdbcParameter) {
this.jdbcParameter = jdbcParameter;
}
public Keyword getKeyword() {
return keyword;
}
public void setKeyword(Keyword keyword) {
this.keyword = keyword;
}
public String getVariable() {
return variable;
}
public void setVariable(String variable) {
this.variable = variable;
}
@Override
public String toString() {
String result = keyword.name() + " ";
if (rowCount != null) {
result += rowCount;
} else if (jdbcParameter != null) {
result += jdbcParameter.toString();
} else if (variable != null) {
result += variable;
}
return result;
}
public First withKeyword(Keyword keyword) {
this.setKeyword(keyword);
return this;
}
public First withRowCount(Long rowCount) {
this.setRowCount(rowCount);
return this;
}
public First withJdbcParameter(JdbcParameter jdbcParameter) {
this.setJdbcParameter(jdbcParameter);
return this;
}
public First withVariable(String variable) {
this.setVariable(variable);
return this;
}
public enum Keyword {
FIRST, LIMIT;
public static Keyword from(String keyword) {
return Enum.valueOf(Keyword.class, keyword.toUpperCase());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy