public enum TimedGroup extends java.lang.Enum<TimedGroup>
| Enum Constant and Description |
|---|
ANNOTATION_HANDLER |
BYTECODE_TRANSFORMER |
POST_TRANSFORMER |
RAW_TRANSFORMER |
REMAPPER
Not really a transformer but still timed.
|
| Modifier and Type | Method and Description |
|---|---|
static TimedGroup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimedGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimedGroup BYTECODE_TRANSFORMER
public static final TimedGroup RAW_TRANSFORMER
public static final TimedGroup ANNOTATION_HANDLER
public static final TimedGroup POST_TRANSFORMER
public static final TimedGroup REMAPPER
public static TimedGroup[] values()
for (TimedGroup c : TimedGroup.values()) System.out.println(c);
public static TimedGroup 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 null