public enum TraceTags extends Enum<TraceTags>
Enum Constant and Description |
---|
BUS_DESTINATION |
PEER_ADDRESS |
PEER_HOSTNAME |
PEER_PORT |
PEER_SERVICE |
Modifier and Type | Method and Description |
---|---|
static TraceTags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceTags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceTags PEER_ADDRESS
public static final TraceTags PEER_HOSTNAME
public static final TraceTags PEER_PORT
public static final TraceTags PEER_SERVICE
public static final TraceTags BUS_DESTINATION
public static TraceTags[] values()
for (TraceTags c : TraceTags.values()) System.out.println(c);
public static TraceTags 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 Eclipse. All rights reserved.