public enum PropagationType extends Enum<PropagationType>
| Enum Constant and Description |
|---|
AWS
AWS propagation type.
|
B3
B3 propagation type.
|
CUSTOM
Custom propagation type.
|
W3C
W3C propagation type.
|
| Modifier and Type | Method and Description |
|---|---|
static PropagationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropagationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropagationType AWS
public static final PropagationType B3
public static final PropagationType W3C
public static final PropagationType CUSTOM
public static PropagationType[] values()
for (PropagationType c : PropagationType.values()) System.out.println(c);
public static PropagationType 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 © 2022 Pivotal Software, Inc.. All rights reserved.