public enum StreamStatus extends Enum<StreamStatus>
| Enum Constant and Description |
|---|
COMPLETED |
CONNECTING |
ERROR |
IDLE |
PROCESSING |
RETRY |
| Modifier and Type | Method and Description |
|---|---|
static StreamStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamStatus CONNECTING
public static final StreamStatus PROCESSING
public static final StreamStatus COMPLETED
public static final StreamStatus IDLE
public static final StreamStatus RETRY
public static final StreamStatus ERROR
public static StreamStatus[] values()
for (StreamStatus c : StreamStatus.values()) System.out.println(c);
public static StreamStatus 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 © 2021 WSO2. All rights reserved.