Uses of Class
org.simpleframework.common.parse.ParseBuffer
Packages that use ParseBuffer
-
Uses of ParseBuffer in org.simpleframework.common.parse
Methods in org.simpleframework.common.parse with parameters of type ParseBufferModifier and TypeMethodDescriptionvoid
ParseBuffer.append
(ParseBuffer text) This will add aParseBuffer
to the end of this.void
ParseBuffer.append
(ParseBuffer text, int off, int len) This will add aParseBuffer
to the end of this.void
ParseBuffer.reset
(ParseBuffer text) This will reset the buffer in such a way that the buffer is cleared of all contents and then has the given string appended. -
Uses of ParseBuffer in org.simpleframework.http.parse
Fields in org.simpleframework.http.parse declared as ParseBufferModifier and TypeFieldDescriptionprivate ParseBuffer
ContentTypeParser.charset
Used to store the characters for the charset parameter.private ParseBuffer
ContentDispositionParser.file
This is used to capture the name of the file if it is provided.private ParseBuffer
ContentDispositionParser.name
This is used to capture the name of the part if it is provided.private ParseBuffer
ContentTypeParser.name
Used to collect the name of a content type parameter.private ParseBuffer
PrincipalParser.password
Keeps the characters consumed for the password token.private ParseBuffer
ContentTypeParser.primary
Used to store the characters consumed for the primary type.private ParseBuffer
ContentTypeParser.secondary
Used to store the characters consumed for the secondary type.private ParseBuffer
ContentDispositionParser.skip
This is the buffer used to acquire values from the header.private ParseBuffer
ContentTypeParser.type
Used to store the characters consumed for the type.private ParseBuffer
PrincipalParser.user
Keeps the characters consumed for the user name token.private ParseBuffer
ContentTypeParser.value
Used to collect the value of the content type parameter.Methods in org.simpleframework.http.parse with parameters of type ParseBufferModifier and TypeMethodDescriptionprivate void
ContentTypeParser.insert
(ParseBuffer name, ParseBuffer value) This will add the given name and value to the parameters map.private void
ContentDispositionParser.value
(ParseBuffer value) This is used to read a parameters value from the buf.