public enum Tag extends Enum<Tag>
| Enum Constant and Description |
|---|
COMPONENT |
DB_INSTANCE |
DB_STATEMENT |
DB_TYPE |
ERROR |
HTTP_METHOD |
HTTP_STATUS |
HTTP_URL |
MESSAGE_BUS_DESTINATION |
| Modifier and Type | Method and Description |
|---|---|
static Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tag COMPONENT
public static final Tag HTTP_STATUS
public static final Tag HTTP_METHOD
public static final Tag HTTP_URL
public static final Tag MESSAGE_BUS_DESTINATION
public static final Tag DB_TYPE
public static final Tag DB_INSTANCE
public static final Tag DB_STATEMENT
public static final Tag ERROR
public static Tag[] values()
for (Tag c : Tag.values()) System.out.println(c);
public static Tag 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 nullApache Camel