@Documented @Retention(value=RUNTIME) @Target(value=PARAMETER) public @interface Named
See Named parameters for usage.
It isn't valid to mix named and non-named (indexed) parameters on the same query method. If you're using Named
with Limit
or Offset
, then normal requirements for them are applied. It is a error to put
Named
on the same parameter as Limit
or Offset
.
It is a error to use several Named
with same value on single finder method.
@NotNull public abstract String value
Copyright © 2008–2017. All rights reserved.