public static enum Pom.Scope extends Enum<Pom.Scope>
Enum Constant and Description |
---|
compile |
import_ |
provided |
runtime |
system |
test |
Modifier and Type | Method and Description |
---|---|
static Pom.Scope |
valueOf(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(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 nullCopyright © 2021 aQute SARL. All rights reserved.