public enum OutputColorType extends java.lang.Enum<OutputColorType>
Note: New items may be added in the future.
| Modifier and Type | Method | Description |
|---|---|---|
static OutputColorType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static OutputColorType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputColorType WARNING
public static final OutputColorType FAILURE
public static final OutputColorType DEBUG
public static final OutputColorType SUCCESS
public static final OutputColorType RGB
public static OutputColorType[] values()
for (OutputColorType c : OutputColorType.values()) System.out.println(c);
public static OutputColorType 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 nullBuilt on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.