public enum NvtxColor extends Enum<NvtxColor>
Enum Constant and Description |
---|
BLUE |
CYAN |
DARK_GREEN |
GREEN |
ORANGE |
PURPLE |
RED |
WHITE |
YELLOW |
Modifier and Type | Method and Description |
---|---|
static NvtxColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NvtxColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NvtxColor GREEN
public static final NvtxColor BLUE
public static final NvtxColor YELLOW
public static final NvtxColor PURPLE
public static final NvtxColor CYAN
public static final NvtxColor RED
public static final NvtxColor WHITE
public static final NvtxColor DARK_GREEN
public static final NvtxColor ORANGE
public static NvtxColor[] values()
for (NvtxColor c : NvtxColor.values()) System.out.println(c);
public static NvtxColor valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024. All rights reserved.