public static enum GradleDependency.Type extends Enum<GradleDependency.Type>
Enum Constant and Description |
---|
FILE
Dependency type for files available on local filesystem.
|
MODULE
Dependency type for modules usually downloaded from a remote repository.
|
PROJECT
Dependency type for sub-project in the current multi-project setup.
|
UNRESOLVED
Dependency type for modules which was not able to be resolved by Gradle.
|
Modifier and Type | Method and Description |
---|---|
static GradleDependency.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GradleDependency.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GradleDependency.Type UNRESOLVED
public static final GradleDependency.Type PROJECT
public static final GradleDependency.Type MODULE
public static final GradleDependency.Type FILE
public static GradleDependency.Type[] values()
public static GradleDependency.Type 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 null