Annotation Type BindingPriority
-
@Documented @Retention(RUNTIME) @Target(METHOD) public @interface BindingPriorityDefines a binding priority for a target method. If two target methods can be bound to a source method, the one with the higher priority will be selected.
-
-
Field Summary
Fields Modifier and Type Fields Description static intDEFAULTThe default priority for methods not carrying theBindingPriorityannotation.
-
Required Element Summary
Required Elements Modifier and Type Required Element Description intvalueThe binding priority for the annotated method.
-
-
-
Field Detail
-
DEFAULT
static final int DEFAULT
The default priority for methods not carrying theBindingPriorityannotation.
-
-