public interface Ordered
| 限定符和类型 | 字段和说明 |
|---|---|
static int |
DEFAULT_PRECEDENCE
默认值
|
static int |
HIGHEST_PRECEDENCE
Useful constant for the highest precedence value.
|
static int |
LOWEST_PRECEDENCE
Useful constant for the lowest precedence value.
|
static final int HIGHEST_PRECEDENCE
Integer.MIN_VALUE,
常量字段值static final int LOWEST_PRECEDENCE
Integer.MAX_VALUE,
常量字段值static final int DEFAULT_PRECEDENCE
int getOrder()
Normally starting with 0 or 1, with LOWEST_PRECEDENCE
indicating greatest. Same order values will result in arbitrary
positions for the affected objects.
Higher value can be interpreted as lower priority, consequently the first object has highest priority (somewhat analogous to Servlet "load-on-startup" values).
Note that order values below 0 are reserved for framework purposes. Application-specified values should always be 0 or greater, with only framework components (internal or third-party) supposed to use lower values.
LOWEST_PRECEDENCECopyright © 2006–2018 TinyGroup. All rights reserved.