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

com.jpattern.orm.query.clause.select.SelectRegexPattern Maven / Gradle / Ivy

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

/**
 * 
 * @author Francesco Cina
 *
 * 07/lug/2011
 */
public interface SelectRegexPattern {
	
	String SQL_SELECT_SPLIT_PATTERN = "[^,]*[\\(][^\\)]*[\\)][^,]*|[^,]+";
	
	String SQL_SELECT_PROPERTY_PATTERN = "[a-zA-Z_0-9]+[\\.][a-zA-Z_0-9]+[\\.][a-zA-Z_0-9]+|[a-zA-Z_0-9]+[\\.][a-zA-Z_0-9]+";
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy