public static enum JavaSource.Priority extends Enum<JavaSource.Priority>
| Enum Constant and Description |
|---|
ABOVE_NORMAL |
BELOW_NORMAL |
HIGH |
LOW |
MAX |
MIN |
NORMAL |
| Modifier and Type | Method and Description |
|---|---|
static JavaSource.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaSource.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaSource.Priority MAX
public static final JavaSource.Priority HIGH
public static final JavaSource.Priority ABOVE_NORMAL
public static final JavaSource.Priority NORMAL
public static final JavaSource.Priority BELOW_NORMAL
public static final JavaSource.Priority LOW
public static final JavaSource.Priority MIN
public static JavaSource.Priority[] values()
for (JavaSource.Priority c : JavaSource.Priority.values()) System.out.println(c);
public static JavaSource.Priority valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullBuilt on May 22 2013. | Portions Copyright 1997-2013 Oracle. All rights reserved.