Package com.enonic.xp.web.multipart
Interface MultipartForm
-
- All Superinterfaces:
Iterable<MultipartItem>
public interface MultipartForm extends Iterable<MultipartItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
delete()
MultipartItem
get(String name)
MultipartItem
get(String name, int index)
String
getAsString(String name)
int
getSize()
boolean
isEmpty()
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
isEmpty
boolean isEmpty()
-
getSize
int getSize()
-
get
MultipartItem get(String name)
-
get
MultipartItem get(String name, int index)
-
delete
void delete()
-
-