@Inherited @Target(value=TYPE) @Retention(value=RUNTIME) public @interface Priority
| Modifier and Type | Fields and Description | 
|---|---|
static int | 
FIRST
Value indicating the annotated member should be the very first 
 | 
static int | 
HIGH
Value indicating the annotated member should have high priority, effectively placing it "in the first half". 
 | 
static int | 
LAST
Value indicating the annotated member should come last. 
 | 
static int | 
LOW
Value indicating the annotated member should be placed at the "lower half". 
 | 
static int | 
NEUTRAL
Value indicating the annotated member should have medium priority, effectively placing it "in the middle". 
 | 
| Modifier and Type | Optional Element and Description | 
|---|---|
int | 
value
A value indicating the priority. 
 | 
public static final int LAST
public static final int LOW
public static final int NEUTRAL
Copyright © 2010–2018. All rights reserved.