All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.onetwo.common.db.parser.SqlKeywordObject Maven / Gradle / Ivy

The newest version!
package org.onetwo.common.db.parser;

import org.onetwo.common.lexer.AbstractParser.JTokenValue;


public class SqlKeywordObject extends SqlObjectImpl {

	private final SqlTokenKey token;
	
	public SqlKeywordObject(JTokenValue tv){
		this(tv.getToken(), tv.getValue());
	}
	public SqlKeywordObject(SqlTokenKey token, String fragmentSql) {
		super(fragmentSql+" ");
		this.token = token;
	}
	public SqlTokenKey getToken() {
		return token;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy