Enum Constant and Description |
---|
GRADLE |
GRADLE_KOTLIN |
MAVEN |
Modifier and Type | Field and Description |
---|---|
static BuildTool |
DEFAULT_OPTION |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBuildFileName() |
java.util.Optional<GradleDsl> |
getGradleDsl() |
java.lang.String |
getJarDirectory() |
java.lang.String |
getName() |
java.lang.String |
getShadeJarDirectoryPattern(Project project) |
java.lang.String |
getTitle() |
boolean |
isGradle() |
java.lang.String |
toString() |
static BuildTool |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BuildTool[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildTool GRADLE
public static final BuildTool GRADLE_KOTLIN
public static final BuildTool MAVEN
public static final BuildTool DEFAULT_OPTION
public static BuildTool[] values()
for (BuildTool c : BuildTool.values()) System.out.println(c);
public static BuildTool 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 nullpublic java.lang.String getJarDirectory()
public java.lang.String getShadeJarDirectoryPattern(Project project)
public java.lang.String getBuildFileName()
public java.lang.String toString()
toString
in class java.lang.Enum<BuildTool>
@NonNull public java.lang.String getName()
public boolean isGradle()
public java.util.Optional<GradleDsl> getGradleDsl()
public java.lang.String getTitle()