public static enum APIModel.ErrorType extends Enum<APIModel.ErrorType>
| Enum Constant and Description |
|---|
FunctionInvokeFailed |
FunctionTimeout |
InvalidStageResponse |
StageFailed |
StageLost |
StageTimeout |
UnknownError |
| Modifier and Type | Method and Description |
|---|---|
static APIModel.ErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static APIModel.ErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIModel.ErrorType UnknownError
public static final APIModel.ErrorType StageTimeout
public static final APIModel.ErrorType StageFailed
public static final APIModel.ErrorType FunctionTimeout
public static final APIModel.ErrorType FunctionInvokeFailed
public static final APIModel.ErrorType StageLost
public static final APIModel.ErrorType InvalidStageResponse
public static APIModel.ErrorType[] values()
for (APIModel.ErrorType c : APIModel.ErrorType.values()) System.out.println(c);
public static APIModel.ErrorType 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. All rights reserved.