public enum TracingHeaderFormat extends Enum<TracingHeaderFormat>
| Enum Constant and Description |
|---|
ALL_ID_FORMAT |
SINGLE_ID_FORMAT |
TWO_ID_FORMAT |
| Modifier and Type | Method and Description |
|---|---|
static TracingHeaderFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TracingHeaderFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TracingHeaderFormat SINGLE_ID_FORMAT
public static final TracingHeaderFormat TWO_ID_FORMAT
public static final TracingHeaderFormat ALL_ID_FORMAT
public static TracingHeaderFormat[] values()
for (TracingHeaderFormat c : TracingHeaderFormat.values()) System.out.println(c);
public static TracingHeaderFormat 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 © 2008–2024 Apache Software Foundation. All rights reserved.