public enum SpanStatus extends Enum<SpanStatus>
Enum Constant and Description |
---|
ABORTED
The operation was aborted.
|
CANCELLED
The operation was cancelled (typically by the caller).
|
OK
The operation completed successfully.
|
UNAVAILABLE
The service is currently unavailable.
|
Modifier and Type | Method and Description |
---|---|
static SpanStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpanStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpanStatus OK
public static final SpanStatus CANCELLED
public static final SpanStatus ABORTED
public static final SpanStatus UNAVAILABLE
public static SpanStatus[] values()
for (SpanStatus c : SpanStatus.values()) System.out.println(c);
public static SpanStatus 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 null
GridGain In-Memory Computing Platform : ver. 8.9.14 Release Date : November 5 2024