Enum ResolvableTool
- java.lang.Object
-
- java.lang.Enum<ResolvableTool>
-
- org.spongepowered.gradle.vanilla.internal.repository.ResolvableTool
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ResolvableTool>
public enum ResolvableTool extends java.lang.Enum<ResolvableTool>
Tools used for specific operations in the Minecraft preparation pipeline.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_WIDENERJAR_MERGE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringid()java.lang.Stringnotation()static ResolvableToolvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ResolvableTool[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JAR_MERGE
public static final ResolvableTool JAR_MERGE
-
ACCESS_WIDENER
public static final ResolvableTool ACCESS_WIDENER
-
-
Method Detail
-
values
public static ResolvableTool[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ResolvableTool c : ResolvableTool.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResolvableTool valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
id
public java.lang.String id()
-
notation
public java.lang.String notation()
-
-