public static enum GradleExecutionContext.ConsoleType extends java.lang.Enum<GradleExecutionContext.ConsoleType>
| Enum Constant and Description |
|---|
RICH
Enable color and rich output, regardless of whether the current process is attached to a console or not.
|
| Modifier and Type | Method and Description |
|---|---|
static GradleExecutionContext.ConsoleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GradleExecutionContext.ConsoleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GradleExecutionContext.ConsoleType RICH
public static GradleExecutionContext.ConsoleType[] values()
for (GradleExecutionContext.ConsoleType c : GradleExecutionContext.ConsoleType.values()) System.out.println(c);
public static GradleExecutionContext.ConsoleType 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