public static enum SamplerAggregator.ExecutionMode extends java.lang.Enum<SamplerAggregator.ExecutionMode>
| Enum Constant | Description |
|---|---|
BYTES_HASH |
|
GLOBAL_ORDINALS |
|
MAP |
| Modifier and Type | Method | Description |
|---|---|---|
static SamplerAggregator.ExecutionMode |
fromString(java.lang.String value) |
|
java.lang.String |
toString() |
|
static SamplerAggregator.ExecutionMode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SamplerAggregator.ExecutionMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SamplerAggregator.ExecutionMode MAP
public static final SamplerAggregator.ExecutionMode BYTES_HASH
public static final SamplerAggregator.ExecutionMode GLOBAL_ORDINALS
public static SamplerAggregator.ExecutionMode[] values()
for (SamplerAggregator.ExecutionMode c : SamplerAggregator.ExecutionMode.values()) System.out.println(c);
public static SamplerAggregator.ExecutionMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static SamplerAggregator.ExecutionMode fromString(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<SamplerAggregator.ExecutionMode>