You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Subtract the {@literal basePath} from {@literal this} {@literal AggregatePath} by removing the {@literal basePath} from the beginning of {@literal this}.
264
+
* Subtract the {@literal basePath} from {@literal this} {@literal AggregatePath} by removing the {@literal basePath}
265
+
* from the beginning of {@literal this}.
265
266
*
266
267
* @param basePath the path to be removed.
267
-
* @return an AggregatePath that ends like the original {@literal AggregatePath} but has {@literal basePath} removed from the beginning.
268
+
* @return an AggregatePath that ends like the original {@literal AggregatePath} but has {@literal basePath} removed
* Compares this {@code AggregatePath} to another {@code AggregatePath} based on their dot path notation.
274
276
* <p>
275
-
* This is used to get {@code AggregatePath} instances sorted in a consistent way. Since this order affects generated SQL this also affects query caches and similar.
277
+
* This is used to get {@code AggregatePath} instances sorted in a consistent way. Since this order affects generated
278
+
* SQL this also affects query caches and similar.
276
279
*
277
280
* @param other the {@code AggregatePath} to compare to. Must not be {@literal null}.
278
-
* @return a negative integer, zero, or a positive integer as this object's path is less than,
279
-
* equal to, or greater than the specified object's path.
281
+
* @return a negative integer, zero, or a positive integer as this object's path is less than, equal to, or greater
282
+
* than the specified object's path.
280
283
*/
281
284
@Override
282
285
defaultintcompareTo(@NonNullAggregatePathother) {
@@ -286,21 +289,21 @@ default int compareTo(@NonNull AggregatePath other) {
286
289
/**
287
290
* Information about a table underlying an entity.
288
291
*
289
-
* @param qualifiedTableName the fully qualified name of the table this path is tied to or of the longest ancestor path that is actually
290
-
* tied to a table. Must not be {@literal null}.
291
-
* @param tableAlias the alias used for the table on which this path is based. May be {@literal null}.
292
-
* @param backReferenceColumnInfos information about the columns used to reference back to the owning entity. Must not be {@literal null}. Since 3.5.
293
-
* @param qualifierColumnInfo the column used for the list index or map key of the leaf property of this path. May be {@literal null}.
294
-
* @param qualifierColumnType the type of the qualifier column of the leaf property of this path or {@literal null} if this is not applicable. May be {@literal null}.
295
-
* @param idColumnInfos the column name of the id column of the ancestor path that represents an actual table. Must not be {@literal null}.
292
+
* @param qualifiedTableName the fully qualified name of the table this path is tied to or of the longest ancestor
293
+
* path that is actually tied to a table. Must not be {@literal null}.
294
+
* @param tableAlias the alias used for the table on which this path is based. May be {@literal null}.
295
+
* @param backReferenceColumnInfos information about the columns used to reference back to the owning entity. Must not
296
+
* be {@literal null}. Since 3.5.
297
+
* @param qualifierColumnInfo the column used for the list index or map key of the leaf property of this path. May be
298
+
* {@literal null}.
299
+
* @param qualifierColumnType the type of the qualifier column of the leaf property of this path or {@literal null} if
300
+
* this is not applicable. May be {@literal null}.
301
+
* @param idColumnInfos the column name of the id column of the ancestor path that represents an actual table. Must
0 commit comments