public enum MutliPartRequestType extends Enum<MutliPartRequestType>
| Enum Constant and Description |
|---|
MULTI_PART
A request contains the
Multipart |
MULTI_PART_FILE
A request contains the
MultipartFile |
| Modifier and Type | Method and Description |
|---|---|
static MutliPartRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MutliPartRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MutliPartRequestType MULTI_PART_FILE
MultipartFilepublic static final MutliPartRequestType MULTI_PART
Multipartpublic static MutliPartRequestType[] values()
for (MutliPartRequestType c : MutliPartRequestType.values()) System.out.println(c);
public static MutliPartRequestType 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. All rights reserved.