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

com.jpattern.orm.query.find.CustomFindSelectImpl Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.query.find;

import com.jpattern.orm.query.clause.OrmCustomSelect;

/**
 * 
 * @author ufo
 *
 */
public class CustomFindSelectImpl extends OrmCustomSelect implements CustomFindSelect {

	public CustomFindSelectImpl(final String selectClause) {
		super(selectClause);
	}

	@Override
	protected CustomFindSelect select() {
		return this;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy