public static enum S3BatchResponse.ResultCode extends Enum<S3BatchResponse.ResultCode>
Enum Constant and Description |
---|
PermanentFailure
The task suffered a permanent failure.
|
Succeeded
The task completed normally.
|
TemporaryFailure
The task suffered a temporary failure and will be redriven before the job
completes.
|
Modifier and Type | Method and Description |
---|---|
static S3BatchResponse.ResultCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static S3BatchResponse.ResultCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final S3BatchResponse.ResultCode Succeeded
public static final S3BatchResponse.ResultCode TemporaryFailure
public static final S3BatchResponse.ResultCode PermanentFailure
public static S3BatchResponse.ResultCode[] values()
for (S3BatchResponse.ResultCode c : S3BatchResponse.ResultCode.values()) System.out.println(c);
public static S3BatchResponse.ResultCode 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.