Package io.micronaut.core.order
Interface Ordered
-
- All Known Subinterfaces:
LocaleResolver<T>
- All Known Implementing Classes:
AbstractLocaleResolver
,FixedLocaleResolver
public interface Ordered
Interface for objects that are ordered.- Since:
- 1.0
-
-
Field Summary
Fields Modifier and Type Field Description static int
HIGHEST_PRECEDENCE
Constant for the highest precedence value.static int
LOWEST_PRECEDENCE
Constant for the lowest precedence value.
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default int
getOrder()
-
-
-
Field Detail
-
HIGHEST_PRECEDENCE
static final int HIGHEST_PRECEDENCE
Constant for the highest precedence value.- See Also:
Integer.MIN_VALUE
, Constant Field Values
-
LOWEST_PRECEDENCE
static final int LOWEST_PRECEDENCE
Constant for the lowest precedence value.- See Also:
Integer.MAX_VALUE
, Constant Field Values
-
-