| Enum Constant | Description |
|---|---|
compile |
|
import_ |
|
provided |
|
runtime |
|
system |
|
test |
| Modifier and Type | Method | Description |
|---|---|---|
static Pom.Scope |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Pom.Scope[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pom.Scope compile
public static final Pom.Scope runtime
public static final Pom.Scope system
public static final Pom.Scope import_
public static final Pom.Scope provided
public static final Pom.Scope test
public static Pom.Scope[] values()
for (Pom.Scope c : Pom.Scope.values()) System.out.println(c);
public static Pom.Scope valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null