public static enum ArtifactDependency.Scope extends Enum<ArtifactDependency.Scope>
| Modifier and Type | Method and Description |
|---|---|
static ArtifactDependency.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArtifactDependency.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArtifactDependency.Scope DEFAULT
public static final ArtifactDependency.Scope COMPILE
public static final ArtifactDependency.Scope PROVIDED
public static final ArtifactDependency.Scope TEST
public static ArtifactDependency.Scope[] values()
for (ArtifactDependency.Scope c : ArtifactDependency.Scope.values()) System.out.println(c);
public static ArtifactDependency.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 © 2015 Atlassian. All rights reserved.