mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-27 21:01:15 +08:00
removed querydsl-root/README.txt
This commit is contained in:
parent
6761d9f415
commit
a3ab07f9fe
@ -1,32 +0,0 @@
|
||||
/*
|
||||
* Copyright 2011, Mysema Ltd
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.mysema.query.apt.jdo;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
|
||||
public final class Keywords {
|
||||
|
||||
public static final Collection<String> keywords = Collections.unmodifiableList(Arrays.asList(
|
||||
"AS","ASC", "ASCENDING","AVG",
|
||||
"BY","COUNT", "DESC","DESCENDING",
|
||||
"DISTINCT","EXCLUDE", "FROM","GROUP",
|
||||
"HAVING","INTO","MAX","MIN",
|
||||
"ORDER","PARAMETERS","RANGE","SELECT",
|
||||
"SUBCLASSES","SUM","UNIQUE","VARIABLES","WHERE"));
|
||||
|
||||
private Keywords(){}
|
||||
|
||||
}
|
||||
@ -1,41 +0,0 @@
|
||||
/*
|
||||
* Copyright 2011, Mysema Ltd
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.mysema.query.apt.jpa;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
|
||||
public final class Keywords {
|
||||
|
||||
public static final Collection<String> keywords = Collections.unmodifiableList((Arrays.asList(
|
||||
"ABS","ALL","AND","ANY","AS","ASC","AVG","BETWEEN",
|
||||
"BIT_LENGTH[51]","BOTH","BY","CASE","CHAR_LENGTH",
|
||||
"CHARACTER_LENGTH","CLASS",
|
||||
"COALESCE","CONCAT","COUNT","CURRENT_DATE","CURRENT_TIME",
|
||||
"CURRENT_TIMESTAMP",
|
||||
"DELETE","DESC","DISTINCT","ELSE","EMPTY","END","ENTRY",
|
||||
"ESCAPE","EXISTS","FALSE","FETCH",
|
||||
"FROM","GROUP","HAVING","IN","INDEX","INNER","IS","JOIN",
|
||||
"KEY","LEADING","LEFT","LENGTH","LIKE",
|
||||
"LOCATE","LOWER","MAX","MEMBER","MIN","MOD","NEW","NOT",
|
||||
"NULL","NULLIF","OBJECT","OF","OR",
|
||||
"ORDER","OUTER","POSITION","SELECT","SET","SIZE","SOME",
|
||||
"SQRT","SUBSTRING","SUM","THEN",
|
||||
"TRAILING","TRIM","TRUE","TYPE","UNKNOWN","UPDATE","UPPER",
|
||||
"VALUE","WHEN","WHERE")));
|
||||
|
||||
private Keywords() {}
|
||||
|
||||
}
|
||||
@ -1,16 +0,0 @@
|
||||
Querydsl is a framework for creating type-safe queries for Java.
|
||||
|
||||
The source code of Querydsl is organized as a multi-module project with the following submodules :
|
||||
|
||||
* querydsl-apt - APT processor implementation
|
||||
* querydsl-collections - Querydsl for Java Bean collections
|
||||
* querydsl-core - Core model
|
||||
* querydsl-docs - Reference documentation
|
||||
* querydsl-hibernate-search - Querydsl for Hibernate Search
|
||||
* querydsl-jdo - Querydsl for JDO
|
||||
* querydsl-jpa - Querydsl for JPA/Hibernate
|
||||
* querydsl-lucene - Querydsl for Lucene
|
||||
* querydsl-maven-plugin - Querydsl Maven plugin for SQL
|
||||
* querydsl-mongodb - Querydsl for MongoDB
|
||||
* querydsl-scala - Querydsl for Scala
|
||||
* querydsl-sql - Querydsl for SQL/JDBC
|
||||
Loading…
Reference in New Issue
Block a user