@Target(value={FIELD,METHOD,TYPE})
@Retention(value=RUNTIME)
@Documented
@API(status=STABLE,
since="5.9")
public @interface Order
@Order is an annotation that is used to configure the
order in which the annotated element (i.e., field,
method, or class) should be evaluated or executed relative to other elements
of the same category.
When used with
@RegisterExtension or
@ExtendWith,
the category applies to extension fields. When used with
MethodOrderer.OrderAnnotation, the category applies to test methods.
When used with ClassOrderer.OrderAnnotation, the category applies to
test classes.
If @Order is not explicitly declared on an element, the
DEFAULT order value will be assigned to the element.
MethodOrderer.OrderAnnotation,
ClassOrderer.OrderAnnotation,
@RegisterExtension,
@ExtendWith| Modifier and Type | Fields and Description |
|---|---|
static int |
DEFAULT
Default order value for elements not explicitly annotated with
@Order,
equal to the value of Integer.MAX_VALUE / 2. |
| Modifier and Type | Required Element and Description |
|---|---|
int |
value
The order value for the annotated element (i.e., field, method, or class).
|
public static final int DEFAULT
@Order,
equal to the value of Integer.MAX_VALUE / 2.value()public abstract int value
Elements are ordered based on priority where a lower value has greater
priority than a higher value. For example, Integer.MAX_VALUE has
the lowest priority.
DEFAULT