Package io.undertow.util
Class MultipartParser
- java.lang.Object
-
- io.undertow.util.MultipartParser
-
public class MultipartParser extends Object
- Author:
- Stuart Douglas
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MultipartParser.ParseState
static interface
MultipartParser.PartHandler
-
Field Summary
Fields Modifier and Type Field Description static byte
CR
The Carriage Return ASCII character value.static byte
DASH
The dash (-) ASCII character value.static byte
HTAB
The Horizontal Tab ASCII character value;static byte
LF
The Line Feed ASCII character value.static byte
SP
The Space ASCII character value;
-
Constructor Summary
Constructors Constructor Description MultipartParser()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MultipartParser.ParseState
beginParse(ByteBufferPool bufferPool, MultipartParser.PartHandler handler, byte[] boundary, String requestCharset)
-
-
-
Field Detail
-
HTAB
public static final byte HTAB
The Horizontal Tab ASCII character value;- See Also:
- Constant Field Values
-
CR
public static final byte CR
The Carriage Return ASCII character value.- See Also:
- Constant Field Values
-
LF
public static final byte LF
The Line Feed ASCII character value.- See Also:
- Constant Field Values
-
SP
public static final byte SP
The Space ASCII character value;- See Also:
- Constant Field Values
-
DASH
public static final byte DASH
The dash (-) ASCII character value.- See Also:
- Constant Field Values
-
-
Method Detail
-
beginParse
public static MultipartParser.ParseState beginParse(ByteBufferPool bufferPool, MultipartParser.PartHandler handler, byte[] boundary, String requestCharset)
-
-