Uses of Interface
org.simpleframework.http.message.Segment
-
Packages that use Segment Package Description org.simpleframework.http.message -
-
Uses of Segment in org.simpleframework.http.message
Subinterfaces of Segment in org.simpleframework.http.message Modifier and Type Interface Description interface
Header
This is aHeader
object that is used to represent a basic form for the HTTP request message.Classes in org.simpleframework.http.message that implement Segment Modifier and Type Class Description class
HeaderConsumer
TheHeaderConsumer
object is used to consume a HTTP header from the cursor.(package private) class
PartHeaderConsumer
ThePartHeaderConsumer
object is used to consume the header for a multipart message.class
RequestConsumer
TheRequestConsumer
object is used to parse the HTTP request line followed by the HTTP message headers.class
SegmentConsumer
TheSegmentConsumer
object provides a consumer that is used to consume a HTTP header.Fields in org.simpleframework.http.message declared as Segment Modifier and Type Field Description private Segment
BufferPart. segment
This is the segment representing the headers for the part.protected Segment
ConsumerFactory. segment
This is the header associated with the request body consumed.private Segment
ContentConsumer. segment
Represents the HTTP headers that were provided for the part.Methods in org.simpleframework.http.message with parameters of type Segment Modifier and Type Method Description protected byte[]
ConsumerFactory. getBoundary(Segment header)
This is used to extract information from the HTTP header that can be used to determine the type of the body.protected boolean
ConsumerFactory. isChunked(Segment segment)
This is used to extract information from the HTTP header that can be used to determine the type of the body.protected boolean
ConsumerFactory. isFixed(Segment segment)
This is used to extract information from the HTTP header that can be used to determine the type of the body.protected boolean
ConsumerFactory. isUpload(Segment segment)
This is used to extract information from the HTTP header that can be used to determine the type of the body.Constructors in org.simpleframework.http.message with parameters of type Segment Constructor Description BufferPart(Segment segment, Buffer buffer)
Constructor for theBufferPart
object.ConsumerFactory(Allocator allocator, Segment segment)
Constructor for theConsumerFactory
object.ContentConsumer(Allocator allocator, Segment segment, PartSeries series, byte[] boundary)
Constructor for theContentConsumer
object.PartBodyConsumer(Allocator allocator, Segment segment, byte[] boundary)
Constructor for thePartBodyConsumer
object.PartBodyConsumer(Allocator allocator, Segment segment, PartSeries series, byte[] boundary)
Constructor for thePartBodyConsumer
object.PartFactory(Allocator allocator, Segment header, long length)
Constructor for thePartFactory
object.
-