|
Added
Link Here
|
| 1 |
################################################################################ |
| 2 |
# Copyright (c) 2011 Oracle. All rights reserved. |
| 3 |
# This program and the accompanying materials are made available under the |
| 4 |
# terms of the Eclipse Public License v1.0, which accompanies this distribution |
| 5 |
# and is available at http:#www.eclipse.org/legal/epl-v10.html. |
| 6 |
# |
| 7 |
# Contributors: |
| 8 |
# Oracle - initial API and implementation |
| 9 |
################################################################################ |
| 10 |
|
| 11 |
# AbsExpression - Grammar |
| 12 |
ABS_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 13 |
ABS_EXPRESSION_MISSING_EXPRESSION = The encapsulated expression must be provided for an ABS expression. |
| 14 |
ABS_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the ABS expression. |
| 15 |
ABS_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the ABS expression. |
| 16 |
# AbsExpression - Semantic |
| 17 |
ABS_EXPRESSION_INVALID_NUMERIC_EXPRESSION = The encapsulated expression is not a valid numeric expression. |
| 18 |
|
| 19 |
# AbstractFromClause - Grammar |
| 20 |
ABSTRACT_FROM_CLAUSE_IDENTIFICATION_VARIABLE_DECLARATION_ENDS_WITH_COMMA = The FROM clause cannot end with a comma. |
| 21 |
ABSTRACT_FROM_CLAUSE_IDENTIFICATION_VARIABLE_DECLARATION_IS_MISSING_COMMA = The FROM clause has ''{0}'' and ''{1}'' that are not separated by a comma. |
| 22 |
ABSTRACT_FROM_CLAUSE_MISSING_IDENTIFICATION_VARIABLE_DECLARATION = The FROM clause must defined at least one identification variable declaration. |
| 23 |
ABSTRACT_FROM_CLAUSE_WRONG_ORDER_OF_IDENTIFICATION_VARIABLE_DECLARATION = The identification variable ''{0}'' is declared after its usage. Identification variables are evaluated from left to right. |
| 24 |
|
| 25 |
# AbstractPathExpression - Grammar |
| 26 |
ABSTRACT_PATH_EXPRESSION_CANNOT_END_WITH_COMMA = A path expression cannot end with a comma. |
| 27 |
ABSTRACT_PATH_EXPRESSION_MISSING_IDENTIFICATION_VARIABLE = A path expression must start with an identification variable. |
| 28 |
|
| 29 |
# AbstractSchemaName - Grammar |
| 30 |
ABSTRACT_SCHEMA_NAME_INVALID = The abstract schema type ''{0}'' is unknown. |
| 31 |
ABSTRACT_SCHEMA_NAME_NOT_RESOLVABLE = ''{0}'' cannot be resolved to a type. |
| 32 |
# AbstractSchemaName - Semantic |
| 33 |
PATH_EXPRESSION_NOT_RELATIONSHIP_MAPPING = The derived path ''{0}'' does not represent an association field. |
| 34 |
|
| 35 |
# AbstractSelectClause - Grammar |
| 36 |
ABSTRACT_SELECT_CLAUSE_SELECT_EXPRESSION_ENDS_WITH_COMMA = The select expression cannot end with a comma. |
| 37 |
ABSTRACT_SELECT_CLAUSE_SELECT_EXPRESSION_IS_MISSING_COMMA = The SELECT clause has ''{0}'' and ''{1}'' that are not separated by a comma. |
| 38 |
ABSTRACT_SELECT_CLAUSE_SELECT_EXPRESSION_MALFORMED = The select expression is malformed. |
| 39 |
ABSTRACT_SELECT_CLAUSE_SELECT_MISSING_EXPRESSION = The select expression is missing from the SELECT clause. |
| 40 |
|
| 41 |
# AbstractSelectStatement - Grammar |
| 42 |
ABSTRACT_SELECT_STATEMENT_FROM_CLAUSE_MSSING = A select statement must have a FROM clause. |
| 43 |
|
| 44 |
# AdditionExpression - Semantic |
| 45 |
ADDITION_EXPRESSION_LEFT_EXPRESSION_WRONG_TYPE = The left side of the addition is not a valid arithmetic expression. |
| 46 |
ADDITION_EXPRESSION_RIGHT_EXPRESSION_WRONG_TYPE = The right side of the addition is not a valid arithmetic expression. |
| 47 |
|
| 48 |
# AllOrAnyExpression - Grammar |
| 49 |
ALL_OR_ANY_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 50 |
ALL_OR_ANY_EXPRESSION_MISSING_EXPRESSION = The subquery must be provided for an {0} expression. |
| 51 |
ALL_OR_ANY_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the {0} expression. |
| 52 |
ALL_OR_ANY_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the {0} expression. |
| 53 |
ALL_OR_ANY_EXPRESSION_NOT_PART_OF_COMPARISON_EXPRESSION = The {0} expression must be part of a comparison expression. |
| 54 |
|
| 55 |
# ArithmeticFactor - Grammar |
| 56 |
ARITHMETIC_FACTOR_MISSING_EXPRESSION = An arithmetic factor must be followed by an expression. |
| 57 |
# ArithmeticFactor - Semantic |
| 58 |
ARITHMETIC_FACTOR_INVALID_EXPRESSION = The expression must be an arithmetic expression. |
| 59 |
|
| 60 |
# ArithmeticExpression - Grammar |
| 61 |
ARITHMETIC_EXPRESSION_INVALID_LEFT_EXPRESSION = The left expression is not an arithmetic expression. |
| 62 |
ARITHMETIC_EXPRESSION_INVALID_RIGHT_EXPRESSION = The right expression is not an arithmetic expression. |
| 63 |
ARITHMETIC_EXPRESSION_MISSING_LEFT_EXPRESSION = The left expression is missing from the arithmetic expression. |
| 64 |
ARITHMETIC_EXPRESSION_MISSING_RIGHT_EXPRESSION = The right expression is missing from the arithmetic expression. |
| 65 |
|
| 66 |
# AvgFunction - Grammar |
| 67 |
AVG_FUNCTION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 68 |
AVG_FUNCTION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the AVG expression. |
| 69 |
AVG_FUNCTION_MISSING_EXPRESSION = The encapsulated expression must be provided for an AVG expression. |
| 70 |
AVG_FUNCTION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the AVG expression. |
| 71 |
# AvgFunction - Semantic |
| 72 |
AVG_FUNCTION_INVALID_NUMERIC_EXPRESSION = The encapsulated expression is not a valid numeric expression. |
| 73 |
|
| 74 |
# BetweenExpression - Grammar |
| 75 |
BETWEEN_EXPRESSION_MISSING_EXPRESSION = The result expression is missing from the BETWEEN expression. |
| 76 |
BETWEEN_EXPRESSION_MISSING_LOWER_BOUND_EXPRESSION = The lower bound expression is missing from the BETWEEN expression. |
| 77 |
BETWEEN_EXPRESSION_MISSING_AND = The identifier AND is missing from the BETWEEN expression. |
| 78 |
BETWEEN_EXPRESSION_MISSING_UPPER_BOUND_EXPRESSION = The upper bound expression is missing from the BETWEEN expression. |
| 79 |
# BetweenExpression - Semantic |
| 80 |
BETWEEN_EXPRESSION_WRONG_TYPE = The expression's type and the lower and upper bound expressions' type have to be the same type. |
| 81 |
|
| 82 |
# CaseExpression - Grammar |
| 83 |
CASE_EXPRESSION_MISSING_ELSE_EXPRESSION = A CASE expression must have an ELSE expression. |
| 84 |
CASE_EXPRESSION_MISSING_ELSE_IDENTIFIER = The identifier ELSE is missing from the CASE expression. |
| 85 |
CASE_EXPRESSION_MISSING_END_IDENTIFIER = The identifier END is missing from the CASE expression. |
| 86 |
CASE_EXPRESSION_MISSING_WHEN_CLAUSE = A CASE expression must define at least one WHEN clause. |
| 87 |
CASE_EXPRESSION_WHEN_CLAUSES_END_WITH_COMMA = The WHEN clauses cannot end with a comma. |
| 88 |
CASE_EXPRESSION_WHEN_CLAUSES_HAS_COMMA = Two WHEN clauses cannot be separated by a comma. |
| 89 |
|
| 90 |
# CoalesceExpression - Grammar |
| 91 |
COALESCE_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 92 |
COALESCE_EXPRESSION_MISSING_EXPRESSION = The encapsulated expressions must be provided for a COALESCE expression. |
| 93 |
COALESCE_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the COALESCE expression. |
| 94 |
COALESCE_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the COALESCE expression. |
| 95 |
|
| 96 |
# CollectionExpression - Grammar |
| 97 |
COLLECTION_EXPRESSION_MISSING_EXPRESSION = An expression at position {0} must be defined. |
| 98 |
|
| 99 |
# CollectionMemberExpression - Grammar |
| 100 |
COLLECTION_MEMBER_EXPRESSION_MISSING_ENTITY_EXPRESSION = A collection member expression must define an entity expression. |
| 101 |
COLLECTION_MEMBER_EXPRESSION_MISSING_COLLECTION_VALUED_PATH_EXPRESSION = A collection member expression must define a collection valued path expression. |
| 102 |
# CollectionMemberExpression - Semantic |
| 103 |
COLLECTION_MEMBER_EXPRESSION_EMBEDDABLE = An embeddable type is not supported. |
| 104 |
|
| 105 |
# CollectionMemberDeclaration - Grammar |
| 106 |
COLLECTION_MEMBER_DECLARATION_MISSING_COLLECTION_VALUED_PATH_EXPRESSION = The collection-valued path expression is missing from the collection member declaration. |
| 107 |
COLLECTION_MEMBER_DECLARATION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the collection member declaration. |
| 108 |
COLLECTION_MEMBER_DECLARATION_MISSING_IDENTIFICATION_VARIABLE = An identification variable must be specified for a collection member declaration. |
| 109 |
COLLECTION_MEMBER_DECLARATION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the collection member declaration. |
| 110 |
|
| 111 |
# CollectionValuedPathExpression - Semantic |
| 112 |
COLLECTION_VALUED_PATH_EXPRESSION_NOT_RESOLVABLE" , "The collection-valued path ''{0}'' cannot be resolved to a valid association field. |
| 113 |
COLLECTION_VALUED_PATH_EXPRESSION_NOT_COLLECTION_TYPE = The collection-valued path ''{0}'' must resolve to an association field. |
| 114 |
|
| 115 |
# ComparisonExpression - Grammar |
| 116 |
COMPARISON_EXPRESSION_MISSING_LEFT_EXPRESSION = A comparison expression must define the left side of the comparison. |
| 117 |
COMPARISON_EXPRESSION_MISSING_RIGHT_EXPRESSION = A comparison expression must define the right side of the comparison. |
| 118 |
# ComparisonExpression - Semantic |
| 119 |
COMPARISON_EXPRESSION_WRONG_COMPARISON_TYPE = The left and right expressions' type must be of the same type. |
| 120 |
|
| 121 |
# ConcatExpression - Grammar |
| 122 |
CONCAT_EXPRESSION_INVALID_EXPRESSION = The expression ''{0}'' is not valid expression. |
| 123 |
CONCAT_EXPRESSION_MISSING_EXPRESSION = The encapsulated expression is missing from the CONCAT expression. |
| 124 |
CONCAT_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the CONCAT expression. |
| 125 |
CONCAT_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the CONCAT expression. |
| 126 |
# ConcatExpression - Semantic |
| 127 |
CONCAT_EXPRESSION_EXPRESSION_WRONG_TYPE = The expression ''{0}'' is not a String. |
| 128 |
|
| 129 |
# ConstructorExpression - Grammar |
| 130 |
CONSTRUCTOR_EXPRESSION_CONSTRUCTOR_ITEM_ENDS_WITH_COMMA = The constructor items cannot end with a comma. |
| 131 |
CONSTRUCTOR_EXPRESSION_CONSTRUCTOR_ITEM_IS_MISSING_COMMA = The constructor expression has two constructor items (''{0}'' and ''{1}'') that are not separated by a comma. |
| 132 |
CONSTRUCTOR_EXPRESSION_MISSING_CONSTRUCTOR_ITEM = A constructor expression must define at least one constructor item. |
| 133 |
CONSTRUCTOR_EXPRESSION_MISSING_CONSTRUCTOR_NAME = The fully qualified class name must be specified. |
| 134 |
CONSTRUCTOR_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the constructor expression. |
| 135 |
CONSTRUCTOR_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the constructor expression. |
| 136 |
# ConstructorExpression - Semantic |
| 137 |
CONSTRUCTOR_EXPRESSION_MISMATCHED_PARAMETER_TYPES = No constructors can be found that match the argument types. |
| 138 |
CONSTRUCTOR_EXPRESSION_UNKNOWN_TYPE = ''{0}'' cannot be resolved to a type. |
| 139 |
|
| 140 |
# CountFunction - Grammar |
| 141 |
COUNT_FUNCTION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 142 |
COUNT_FUNCTION_MISSING_EXPRESSION = The encapsulated expression must be provided for a COUNT expression. |
| 143 |
COUNT_FUNCTION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the COUNT expression. |
| 144 |
COUNT_FUNCTION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the COUNT expression. |
| 145 |
# CountFunction - Semantic |
| 146 |
COUNT_FUNCTION_DISTINCT_EMBEDDABLE = The use of DISTINCT is not supported for arguments of embeddable types. |
| 147 |
|
| 148 |
# DateTime - Grammar |
| 149 |
DATE_TIME_JDBC_ESCAPE_FORMAT_INVALID_SPECIFICATION = The JDBC escape format does not start with either 'd', 't' or 'ts'. |
| 150 |
DATE_TIME_JDBC_ESCAPE_FORMAT_MISSING_CLOSE_QUOTE = The JDBC escape format is missing the close quote. |
| 151 |
DATE_TIME_JDBC_ESCAPE_FORMAT_MISSING_OPEN_QUOTE = The JDBC escape format is missing the open quote. |
| 152 |
DATE_TIME_JDBC_ESCAPE_FORMAT_MISSING_RIGHT_CURLY_BRACE = The JDBC escape format is missing the right curly brace. |
| 153 |
|
| 154 |
# DeleteClause - Grammar |
| 155 |
DELETE_CLAUSE_FROM_MISSING = The identifier FROM is missing from the DELETE FROM clause. |
| 156 |
DELETE_CLAUSE_MULTIPLE_RANGE_VARIABLE_DECLARATION = Only one entity abstract schema type can be defined. |
| 157 |
DELETE_CLAUSE_RANGE_VARIABLE_DECLARATION_MALFORMED = The entity abstract schema type declaration is malformed. |
| 158 |
DELETE_CLAUSE_RANGE_VARIABLE_DECLARATION_MISSING = A DELETE clause must define an entity abstract schema type. |
| 159 |
|
| 160 |
# DivisionExpression - Semantic |
| 161 |
DIVISION_EXPRESSION_LEFT_EXPRESSION_WRONG_TYPE = The left side of the division is not a valid arithmetic expression. |
| 162 |
DIVISION_EXPRESSION_RIGHT_EXPRESSION_WRONG_TYPE = The right side of the division is not a valid arithmetic expression. |
| 163 |
|
| 164 |
# EclipseLinkQueryBuilder - Validation |
| 165 |
ECLIPSE_LINK_QUERY_BUILDER_GRAMMAR_VALIDATOR_ERROR_MESSAGE = Syntax error parsing the query [{0}]. {1} |
| 166 |
ECLIPSE_LINK_QUERY_BUILDER_SEMANTIC_VALIDATOR_ERROR_MESSAGE = Problem compiling the query [{0}]. {1} |
| 167 |
|
| 168 |
# EncapsulatedIdentificationVariableExpression - Semantic |
| 169 |
ENCAPSULATED_IDENTIFICATION_VARIABLE_EXPRESSION_NOT_MAP_VALUED = The {0} operator may only be applied to identification variables that correspond to map-valued associations or map-valued element collections. |
| 170 |
|
| 171 |
# EmptyCollectionComparisonExpression - Grammar |
| 172 |
EMPTY_COLLECTION_COMPARISON_EXPRESSION_MISSING_EXPRESSION = The collection valued path expression must be defined. |
| 173 |
|
| 174 |
# EntityTypeLiteral - Semantic |
| 175 |
ENTITY_TYPE_LITERAL_NOT_RESOLVABLE = ''{0}'' cannot be resolved to a type. |
| 176 |
|
| 177 |
# EntryExpression - Grammar |
| 178 |
ENTRY_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 179 |
ENTRY_EXPRESSION_MISSING_EXPRESSION = An identification variable must be provided for an ENTRY expression. |
| 180 |
ENTRY_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the ENTRY expression. |
| 181 |
ENTRY_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the ENTRY expression. |
| 182 |
|
| 183 |
# ExistsExpression - Grammar |
| 184 |
EXISTS_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 185 |
EXISTS_EXPRESSION_MISSING_EXPRESSION = A subquery must be provided for an EXISTS expression. |
| 186 |
EXISTS_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the EXISTS expression. |
| 187 |
EXISTS_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the EXISTS expression. |
| 188 |
|
| 189 |
# FuncExpression - Grammar |
| 190 |
FUNC_EXPRESSION_MISSING_FUNCTION_NAME = The SQL function name must be specified. |
| 191 |
FUNC_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the FUNC expression. |
| 192 |
FUNC_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the FUNC expression. |
| 193 |
|
| 194 |
# GroupByClause - Grammar |
| 195 |
GROUP_BY_CLAUSE_GROUP_BY_ITEM_ENDS_WITH_COMMA = The select expression cannot end with a comma. |
| 196 |
GROUP_BY_CLAUSE_GROUP_BY_ITEM_IS_MISSING_COMMA = The GROUP BY clause has ''{0}'' and ''{1}'' that are not separated by a comma. |
| 197 |
GROUP_BY_CLAUSE_GROUP_BY_ITEM_MISSING = The grouping item is missing from the GROUP BY clause. |
| 198 |
|
| 199 |
# HavingClause - Grammar |
| 200 |
HAVING_CLAUSE_INVALID_CONDITIONAL_EXPRESSION = The expression is not a valid conditional expression. |
| 201 |
HAVING_CLAUSE_MISSING_CONDITIONAL_EXPRESSION = The conditional expression is missing from the HAVING clause. |
| 202 |
|
| 203 |
# IdentificationVariable - Grammar |
| 204 |
IDENTIFICATION_VARIABLE_INVALID_DUPLICATE = The identification variable ''{0}'' cannot be declared more than once. |
| 205 |
IDENTIFICATION_VARIABLE_INVALID_JAVA_IDENTIFIER = The identification variable ''{0}'' is not following the rules for a Java identifier. |
| 206 |
IDENTIFICATION_VARIABLE_INVALID_RESERVED_WORD = The identification variable ''{0}'' cannot be a reserved word. |
| 207 |
# IdentificationVariable - Semantic |
| 208 |
IDENTIFICATION_VARIABLE_ENTITY_NAME = An identification variable must not have the same name as any entity in the same persistence unit. |
| 209 |
IDENTIFICATION_VARIABLE_INVALID_NOT_DECLARED = The identification variable ''{0}'' is not defined in the FROM clause. |
| 210 |
|
| 211 |
# IdentificationVariableDeclaration - Grammar |
| 212 |
IDENTIFICATION_VARIABLE_DECLARATION_MISSING_RANGE_VARIABLE_DECLARATION = The range variable declaration must be specified. |
| 213 |
|
| 214 |
# IndexExpression - Grammar |
| 215 |
INDEX_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 216 |
INDEX_EXPRESSION_MISSING_EXPRESSION = An identification variable must be provided for an INDEX expression. |
| 217 |
INDEX_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the INDEX expression. |
| 218 |
INDEX_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the INDEX expression. |
| 219 |
# IndexExpression - Semantic |
| 220 |
INDEX_EXPRESSION_WRONG_VARIABLE = The identification variable ''{0}'' does not represent an association or element collection. |
| 221 |
|
| 222 |
# InExpression - Grammar |
| 223 |
IN_EXPRESSION_IN_ITEM_ENDS_WITH_COMMA = The items cannot end with a comma. |
| 224 |
IN_EXPRESSION_IN_ITEM_IS_MISSING_COMMA = The IN expression has ''{0}'' and ''{1}'' that are not separated by a comma. |
| 225 |
IN_EXPRESSION_MALFORMED_EXPRESSION = The IN expression does not have a valid state field path expression or TYPE expession. |
| 226 |
IN_EXPRESSION_MISSING_IN_ITEMS = A least one item must be defined for the IN expression. |
| 227 |
IN_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the IN expression. |
| 228 |
IN_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the IN expression. |
| 229 |
IN_EXPRESSION_MISSING_EXPRESSION = A state field path expression or TYPE expression must be defined. |
| 230 |
|
| 231 |
# InputParameter - Grammar |
| 232 |
INPUT_PARAMETER_JAVA_IDENTIFIER = The named input parameter ''{0}'' is not following the rules for a Java identifier. |
| 233 |
INPUT_PARAMETER_MISSING_PARAMETER = The parameter value is missing from the input parameter. |
| 234 |
INPUT_PARAMETER_MIXTURE = Named and positional input parameters must not be mixed in a single query. |
| 235 |
INPUT_PARAMETER_NOT_INTEGER = The positional input parameter ''{0}'' cannot use non-Integer characters. |
| 236 |
INPUT_PARAMETER_SMALLER_THAN_ONE = The number used for the positional input parameter ''{0}'' must be greater than 0. |
| 237 |
INPUT_PARAMETER_WRONG_CLAUSE_DECLARATION = Input parameters can only be used in the WHERE clause or HAVING clause of a query. |
| 238 |
|
| 239 |
# Join - Grammar |
| 240 |
JOIN_MISSING_IDENTIFICATION_VARIABLE = An identification variable must be defined for a JOIN expression. |
| 241 |
JOIN_MISSING_JOIN_ASSOCIATION_PATH = The join association path is missing from the JOIN expression. |
| 242 |
|
| 243 |
# JoinFetch - Grammar |
| 244 |
JOIN_FETCH_MISSING_JOIN_ASSOCIATION_PATH = The join association path is missing from the JOIN FETCH expression. |
| 245 |
JOIN_FETCH_WRONG_CLAUSE_DECLARATION = JOIN FETCH expressions cannot be used in a FROM clause of a subquery. |
| 246 |
|
| 247 |
# JPQLExpression - Grammar |
| 248 |
JPQL_EXPRESSION_INVALID_QUERY = The query does not start with a valid identifier, has to be either SELECT, UPDATE or DELETE FROM. |
| 249 |
JPQL_EXPRESSION_UNKNOWN_ENDING = The query contains a malformed ending. |
| 250 |
|
| 251 |
# KeyExpression - Grammar |
| 252 |
KEY_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 253 |
KEY_EXPRESSION_MISSING_EXPRESSION = The identification variable must be provided for an ABS expression. |
| 254 |
KEY_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the ABS expression. |
| 255 |
KEY_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the ABS expression. |
| 256 |
|
| 257 |
# LengthExpression - Grammar |
| 258 |
LENGTH_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 259 |
LENGTH_EXPRESSION_MISSING_EXPRESSION = An expression must be provided for a LENGTH expression. |
| 260 |
LENGTH_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the LENGTH expression. |
| 261 |
LENGTH_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the LENGTH expression. |
| 262 |
# LikeExpression - Semantic |
| 263 |
LENGTH_EXPRESSION_WRONG_TYPE = The encapsulated expression is not of string type. |
| 264 |
|
| 265 |
# LikeExpression - Grammar |
| 266 |
LIKE_EXPRESSION_INVALID_ESCAPE_CHARACTER = {0} is not a valid escape character. |
| 267 |
LIKE_EXPRESSION_MISSING_ESCAPE_CHARACTER = The escape character is missing from the LIKE expression. |
| 268 |
LIKE_EXPRESSION_MISSING_PATTERN_VALUE = The pattern value is missing from the LIKE expression. |
| 269 |
LIKE_EXPRESSION_MISSING_STRING_EXPRESSION = The string expression is missing from the LIKE expression. |
| 270 |
|
| 271 |
# LocateExpression - Grammar |
| 272 |
LOCATE_EXPRESSION_INVALID_FIRST_EXPRESSION = The first argument is not a valid expression. |
| 273 |
LOCATE_EXPRESSION_INVALID_SECOND_EXPRESSION = The second argument is not a valid expression. |
| 274 |
LOCATE_EXPRESSION_INVALID_THIRD_EXPRESSION = The third argument is not a valid expression. |
| 275 |
LOCATE_EXPRESSION_MISSING_FIRST_EXPRESSION = The first argument is missing from the LOCATE expression. |
| 276 |
LOCATE_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the LOCATE expression. |
| 277 |
LOCATE_EXPRESSION_MISSING_FIRST_COMMA = The first comma is missing from the LOCATE expression. |
| 278 |
LOCATE_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the LOCATE expression. |
| 279 |
LOCATE_EXPRESSION_MISSING_SECOND_COMMA = The second comma is missing from the LOCATE expression. |
| 280 |
LOCATE_EXPRESSION_MISSING_SECOND_EXPRESSION = The second argument is missing from the LOCATE expression. |
| 281 |
LOCATE_EXPRESSION_MISSING_THIRD_EXPRESSION = The third argument is missing from the LOCATE expression. |
| 282 |
# LocateExpression - Semantic |
| 283 |
LOCATE_EXPRESSION_FIRST_EXPRESSION_WRONG_TYPE = The first expression is not of string type. |
| 284 |
LOCATE_EXPRESSION_SECOND_EXPRESSION_WRONG_TYPE = The second expression is not of string type. |
| 285 |
LOCATE_EXPRESSION_THIRD_EXPRESSION_WRONG_TYPE = The third encapsulated expression is not of numeric type. |
| 286 |
|
| 287 |
# LogicalExpression - Grammar |
| 288 |
LOGICAL_EXPRESSION_INVALID_LEFT_EXPRESSION = The left expression is missing from the logical expression. |
| 289 |
LOGICAL_EXPRESSION_INVALID_RIGHT_EXPRESSION = The right expression is missing from the logical expression. |
| 290 |
LOGICAL_EXPRESSION_MISSING_LEFT_EXPRESSION = The left expression is not a valid expression. |
| 291 |
LOGICAL_EXPRESSION_MISSING_RIGHT_EXPRESSION = The right expression is not a valid expression. |
| 292 |
|
| 293 |
# LowerExpression - Grammar |
| 294 |
LOWER_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 295 |
LOWER_EXPRESSION_MISSING_EXPRESSION = An expression must be provided for a LOWER expression. |
| 296 |
LOWER_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the LOWER expression. |
| 297 |
LOWER_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the LOWER expression. |
| 298 |
# UpperExpression - Semantic |
| 299 |
LOWER_EXPRESSION_WRONG_TYPE = The expression is not a String. |
| 300 |
|
| 301 |
# MaxFunction - Grammar |
| 302 |
MAX_FUNCTION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 303 |
MAX_FUNCTION_MISSING_EXPRESSION = The encapsulated expression must be provided for a MAX expression. |
| 304 |
MAX_FUNCTION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the MAX expression. |
| 305 |
MAX_FUNCTION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the MAX expression. |
| 306 |
|
| 307 |
# MinFunction - Grammar |
| 308 |
MIN_FUNCTION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 309 |
MIN_FUNCTION_MISSING_EXPRESSION = The encapsulated expression must be provided for a MIN expression. |
| 310 |
MIN_FUNCTION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the MIN expression. |
| 311 |
MIN_FUNCTION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the MIN expression. |
| 312 |
|
| 313 |
# ModExpression - Grammar |
| 314 |
MOD_EXPRESSION_INVALID_FIRST_EXPRESSION = The first argument is not a valid expression. |
| 315 |
MOD_EXPRESSION_INVALID_SECOND_PARENTHESIS = The second argument is not a valid expression. |
| 316 |
MOD_EXPRESSION_MISSING_COMMA = The comma is missing from the MOD expression. |
| 317 |
MOD_EXPRESSION_MISSING_FIRST_EXPRESSION = The first argument is missing from the MOD expression. |
| 318 |
MOD_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the MOD expression. |
| 319 |
MOD_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the MOD expression. |
| 320 |
MOD_EXPRESSION_MISSING_SECOND_EXPRESSION = The second argument is missing from the MOD expression. |
| 321 |
# ModExpression - Semantic |
| 322 |
MOD_EXPRESSION_FIRST_EXPRESSION_WRONG_TYPE = The first expression is not an Integer. |
| 323 |
MOD_EXPRESSION_SECOND_EXPRESSION_WRONG_TYPE = The second expression is not an Integer. |
| 324 |
|
| 325 |
# MultiplicationExpression - Semantic |
| 326 |
MULTIPLICATION_EXPRESSION_LEFT_EXPRESSION_WRONG_TYPE = The left side of the multiplication is not a valid arithmetic expression. |
| 327 |
MULTIPLICATION_EXPRESSION_RIGHT_EXPRESSION_WRONG_TYPE = The right side of the multiplication is not a valid arithmetic expression. |
| 328 |
|
| 329 |
# NotExpression - Grammar |
| 330 |
NOT_EXPRESSION_MISSING_EXPRESSION = The expression is missing after the identifier NOT. |
| 331 |
# NotExpression - Semantic |
| 332 |
NOT_EXPRESSION_WRONG_TYPE = The expression is not of boolean type. |
| 333 |
|
| 334 |
# NullComparisonExpression - Grammar |
| 335 |
NULL_COMPARISON_EXPRESSION_MISSING_EXPRESSION = The expression is missing from the null comparison expression. |
| 336 |
# NullComparisonExpression - Semantic |
| 337 |
NULL_COMPARISON_EXPRESSION_INVALID_TYPE = ''{0}'' cannot be resolved to an embeddable. |
| 338 |
|
| 339 |
# NullIfExpression - Grammar |
| 340 |
NULL_IF_EXPRESSION_INVALID_FIRST_EXPRESSION = The first argument is not a valid expression. |
| 341 |
NULL_IF_EXPRESSION_INVALID_SECOND_EXPRESSION = The second argument is not a valid expression. |
| 342 |
NULL_IF_EXPRESSION_MISSING_COMMA = The comma is missing from the NULLIF expression. |
| 343 |
NULL_IF_EXPRESSION_MISSING_FIRST_EXPRESSION = The first argument is missing from the NULLIF expression. |
| 344 |
NULL_IF_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the NULLIF expression. |
| 345 |
NULL_IF_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the NULLIF expression. |
| 346 |
NULL_IF_EXPRESSION_MISSING_SECOND_EXPRESSION = The second argument is missing from the NULLIF expression. |
| 347 |
|
| 348 |
# NumericLiteral - Grammar |
| 349 |
NUMERIC_LITERAL_INVALID = ''{0}'' is not a valid numeric value. |
| 350 |
|
| 351 |
# ObjectByItem - Grammar |
| 352 |
ORDER_BY_ITEM_INVALID_PATH = ''{0}'' is not a valid state field path expression. |
| 353 |
ORDER_BY_ITEM_MISSING_STATE_FIELD_PATH_EXPRESSION = A state field path expression must be specified. |
| 354 |
|
| 355 |
# ObjectExpression - Grammar |
| 356 |
OBJECT_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 357 |
OBJECT_EXPRESSION_MISSING_EXPRESSION = An identification variable must be provided for an OBJECT expression. |
| 358 |
OBJECT_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the OBJECT expression. |
| 359 |
OBJECT_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the OBJECT expression. |
| 360 |
|
| 361 |
# OrderByClause - Grammar |
| 362 |
ORDER_BY_CLAUSE_ORDER_BY_ITEM_ENDS_WITH_COMMA = The select expression cannot end with a comma. |
| 363 |
ORDER_BY_CLAUSE_ORDER_BY_ITEM_IS_MISSING_COMMA = The ORDER BY clause has ''{0}'' and ''{1}'' that are not separated by a comma. |
| 364 |
ORDER_BY_CLAUSE_ORDER_BY_ITEM_MISSING = The ordering item is missing from the ORDER BY clause. |
| 365 |
|
| 366 |
# RangeVariableDeclaration - Grammar |
| 367 |
RANGE_VARIABLE_DECLARATION_MISSING_ABSTRACT_SCHEMA_NAME = An abstract schema name must be specified. |
| 368 |
RANGE_VARIABLE_DECLARATION_MISSING_IDENTIFICATION_VARIABLE = An identification variable must be provider for a range variable declaration. |
| 369 |
|
| 370 |
# ResultVariable - Grammar |
| 371 |
RESULT_VARIABLE_MISSING_SELECT_EXPRESSION = The select item is missing from the result variable declaration. |
| 372 |
RESULT_VARIABLE_MISSING_RESULT_VARIABLE = The result variable is missing from the select item declaration. |
| 373 |
|
| 374 |
# SelectStatement - Semantic |
| 375 |
SELECT_STATEMENT_SELECT_CLAUSE_HAS_NON_AGGREGATE_FUNCTIONS = The select list can only consist of aggregate functions because there is no GROUP BY clause and the HAVING clause is used. |
| 376 |
|
| 377 |
# SimpleSelectClause - Grammar |
| 378 |
SIMPLE_SELECT_CLAUSE_NOT_SINGLE_EXPRESSION = Only one expression can be declared in a SELECT clause of a subquery. |
| 379 |
|
| 380 |
# SizeExpression - Grammar |
| 381 |
SIZE_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 382 |
SIZE_EXPRESSION_MISSING_EXPRESSION = A collection-valued path expression must be provided for a SIZE expression. |
| 383 |
SIZE_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the SIZE expression. |
| 384 |
SIZE_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the SIZE expression. |
| 385 |
|
| 386 |
# SqrtExpression - Grammar |
| 387 |
SQRT_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 388 |
SQRT_EXPRESSION_MISSING_EXPRESSION = An expression must be provided for a SQRT expression. |
| 389 |
SQRT_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the SQRT expression. |
| 390 |
SQRT_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the SQRT expression. |
| 391 |
# SqrtExpression - Semantic |
| 392 |
SQRT_EXPRESSION_WRONG_TYPE = The expression is not a numeric type. |
| 393 |
|
| 394 |
# StateFieldPathExpression - Semantic |
| 395 |
STATE_FIELD_PATH_EXPRESSION_ASSOCIATION_FIELD = The association field ''{0}'' cannot be used as a state field path. |
| 396 |
STATE_FIELD_PATH_EXPRESSION_COLLECTION_TYPE = The state field path ''{0}'' cannot be resolved to a collection type. |
| 397 |
STATE_FIELD_PATH_EXPRESSION_INVALID_ENUM_CONSTANT = ''{0}'' cannot be resolved to an Enum constant. |
| 398 |
STATE_FIELD_PATH_EXPRESSION_NO_MAPPING = No mapping is associated with the state field path ''{0}''. |
| 399 |
STATE_FIELD_PATH_EXPRESSION_NOT_RESOLVABLE = The state field path ''{0}'' cannot be resolved to a valid type. |
| 400 |
|
| 401 |
# SubExpression - Grammar |
| 402 |
SUB_EXPRESSION_MISSING_EXPRESSION = The encapsulated expression is missing. |
| 403 |
SUB_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the sub-expression. |
| 404 |
|
| 405 |
# SubstractionExpression - Semantic |
| 406 |
SUBTRACTION_EXPRESSION_LEFT_EXPRESSION_WRONG_TYPE = The left side of the subtraction is not a valid arithmetic expression. |
| 407 |
SUBTRACTION_EXPRESSION_RIGHT_EXPRESSION_WRONG_TYPE = The right side of the subtraction is not a valid arithmetic expression. |
| 408 |
|
| 409 |
# SubstringExpression - Grammar |
| 410 |
SUBSTRING_EXPRESSION_INVALID_FIRST_EXPRESSION = The first argument is not a valid expression. |
| 411 |
SUBSTRING_EXPRESSION_INVALID_SECOND_EXPRESSION = The second argument is not a valid expression. |
| 412 |
SUBSTRING_EXPRESSION_INVALID_THIRD_EXPRESSION = The third argument is not a valid expression. |
| 413 |
SUBSTRING_EXPRESSION_MISSING_FIRST_COMMA = The first comma is missing from the SUBSTRING expression. |
| 414 |
SUBSTRING_EXPRESSION_MISSING_FIRST_EXPRESSION = The first argument is missing from the SUBSTRING expression. |
| 415 |
SUBSTRING_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the SUBSTRING expression. |
| 416 |
SUBSTRING_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the SUBSTRING expression. |
| 417 |
SUBSTRING_EXPRESSION_MISSING_SECOND_COMMA = The second comma is missing from the SUBSTRING expression. |
| 418 |
SUBSTRING_EXPRESSION_MISSING_SECOND_EXPRESSION = The second argument is missing from the SUBSTRING expression. |
| 419 |
SUBSTRING_EXPRESSION_MISSING_THIRD_EXPRESSION = The third argument is missing from the SUBSTRING expression. |
| 420 |
# SubstringExpression - Semantic |
| 421 |
SUBSTRING_EXPRESSION_FIRST_EXPRESSION_WRONG_TYPE = The first argument is not a String value. |
| 422 |
SUBSTRING_EXPRESSION_SECOND_EXPRESSION_WRONG_TYPE = The first argument is not an integer value. |
| 423 |
SUBSTRING_EXPRESSION_THIRD_EXPRESSION_WRONG_TYPE = The first argument is not an integer value. |
| 424 |
|
| 425 |
# SumFunction - Grammar |
| 426 |
SUM_FUNCTION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 427 |
SUM_FUNCTION_MISSING_EXPRESSION = The encapsulated expression must be provided for a SUM expression. |
| 428 |
SUM_FUNCTION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the SUM expression. |
| 429 |
SUM_FUNCTION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the SUM expression. |
| 430 |
# SumFunction - Semantic |
| 431 |
SUM_FUNCTION_WRONG_TYPE = The argument must be numeric. |
| 432 |
|
| 433 |
# TrimExpression - Grammar |
| 434 |
TRIM_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 435 |
TRIM_EXPRESSION_INVALID_TRIM_CHARACTER = The trim character should be a single-character string literal or a character-valued input parameter (i.e., char or Character). |
| 436 |
TRIM_EXPRESSION_MISSING_EXPRESSION = An expression must be provided for a TRIM expression. |
| 437 |
TRIM_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the TRIM expression. |
| 438 |
TRIM_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the TRIM expression. |
| 439 |
TRIM_EXPRESSION_NOT_SINGLE_STRING_LITERAL = The trim character should be a single-character string literal. |
| 440 |
|
| 441 |
# TypeExpression - Grammar |
| 442 |
TYPE_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 443 |
TYPE_EXPRESSION_MISSING_EXPRESSION = An identification variable or a path expression must be provided for a TYPE expression. |
| 444 |
TYPE_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the TYPE expression. |
| 445 |
TYPE_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the TYPE expression. |
| 446 |
# TypeExpression - Semantic |
| 447 |
|
| 448 |
# UpdateClause - Grammar |
| 449 |
UPDATE_CLAUSE_MISSING_RANGE_VARIABLE_DECLARATION = The range variable declaration is missing from the UPDATE clause. |
| 450 |
UPDATE_CLAUSE_MISSING_SET = The SET identifier is missing from the UPDATE clause. |
| 451 |
UPDATE_CLAUSE_MISSING_UPDATE_ITEMS = At least one update item must be specified for an UPDATE clause. |
| 452 |
UPDATE_CLAUSE_UPDATE_ITEM_ENDS_WITH_COMMA = The update item cannot end with a comma. |
| 453 |
UPDATE_CLAUSE_UPDATE_ITEM_IS_MISSING_COMMA = The UPDATE clause has ''{0}'' and ''{1}'' that are not separated by a comma. |
| 454 |
|
| 455 |
# UpdateItem - Grammar |
| 456 |
UPDATE_ITEM_MISSING_EQUAL_SIGN = The equal sign must be specified. |
| 457 |
UPDATE_ITEM_MISSING_NEW_VALUE = The new value must be specified. |
| 458 |
UPDATE_ITEM_MISSING_STATE_FIELD_PATH_EXPRESSION = The state field path expression is missing. |
| 459 |
# UpdateItem - Semantic |
| 460 |
UPDATE_ITEM_NOT_ASSIGNABLE = Type mismatch: cannot convert from {0} to {1}. |
| 461 |
UPDATE_ITEM_NOT_RESOLVABLE = The state field cannot be resolved. |
| 462 |
|
| 463 |
# UpperExpression - Grammar |
| 464 |
UPPER_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 465 |
UPPER_EXPRESSION_MISSING_EXPRESSION = An expression must be provided for a UPPER expression. |
| 466 |
UPPER_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the UPPER expression. |
| 467 |
UPPER_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the UPPER expression. |
| 468 |
# UpperExpression - Semantic |
| 469 |
UPPER_EXPRESSION_WRONG_TYPE = The expression is not a String. |
| 470 |
|
| 471 |
# ValueExpression - Grammar |
| 472 |
VALUE_EXPRESSION_INVALID_EXPRESSION = The encapsulated expression is not a valid expression. |
| 473 |
VALUE_EXPRESSION_MISSING_EXPRESSION = An identification variable must be provided for a VALUE expression. |
| 474 |
VALUE_EXPRESSION_MISSING_LEFT_PARENTHESIS = The left parenthesis is missing from the VALUE expression. |
| 475 |
VALUE_EXPRESSION_MISSING_RIGHT_PARENTHESIS = The right parenthesis is missing from the VALUE expression. |
| 476 |
|
| 477 |
# WhenClause - Grammar |
| 478 |
WHEN_CLAUSE_MISSING_THEN_EXPRESSION = A conditional expression must be provider for a WHEN clause. |
| 479 |
WHEN_CLAUSE_MISSING_THEN_IDENTIFIER = The identifier THEN is missing from the WHEN clause. |
| 480 |
WHEN_CLAUSE_MISSING_WHEN_EXPRESSION = A WHEN expression must be provided for a WHEN clause. |
| 481 |
|
| 482 |
# WhereClause - Grammar |
| 483 |
WHERE_CLAUSE_INVALID_CONDITIONAL_EXPRESSION = The expression is not a valid conditional expression. |
| 484 |
WHERE_CLAUSE_MISSING_CONDITIONAL_EXPRESSION = The conditional expression is missing from the WHERE clause. |