public enum PresignedURLMethod extends Enum<PresignedURLMethod>
| Enum Constant and Description |
|---|
ABORT_MULTIPART_UPLOAD |
COMPLETE_MULTIPART_UPLOAD |
CREATE_MULTIPART_UPLOAD |
GET_OBJECT |
PUT_OBJECT |
UPLOAD_PART |
| Modifier and Type | Method and Description |
|---|---|
static PresignedURLMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PresignedURLMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PresignedURLMethod ABORT_MULTIPART_UPLOAD
public static final PresignedURLMethod COMPLETE_MULTIPART_UPLOAD
public static final PresignedURLMethod CREATE_MULTIPART_UPLOAD
public static final PresignedURLMethod GET_OBJECT
public static final PresignedURLMethod PUT_OBJECT
public static final PresignedURLMethod UPLOAD_PART
public static PresignedURLMethod[] values()
for (PresignedURLMethod c : PresignedURLMethod.values()) System.out.println(c);
public static PresignedURLMethod 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 © 2025 MuleSoft, Inc.. All rights reserved.