public enum TraceEventStatus extends Enum<TraceEventStatus>
| Enum Constant and Description |
|---|
GREEN
Green
|
RED
Red
|
YELLOW
Yellow
|
| Modifier and Type | Method and Description |
|---|---|
String |
getColor()
Get the color
|
String |
getDescription()
Get the description
|
static TraceEventStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceEventStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceEventStatus GREEN
public static final TraceEventStatus YELLOW
public static final TraceEventStatus RED
public static TraceEventStatus[] values()
for (TraceEventStatus c : TraceEventStatus.values()) System.out.println(c);
public static TraceEventStatus 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 nullpublic String getDescription()
public String getColor()
Copyright © 2021 JBoss by Red Hat. All rights reserved.