Uses of Class
org.simpleframework.common.parse.ParseBuffer
-
Packages that use ParseBuffer Package Description org.simpleframework.common.parse org.simpleframework.http.parse -
-
Uses of ParseBuffer in org.simpleframework.common.parse
Methods in org.simpleframework.common.parse with parameters of type ParseBuffer Modifier and Type Method Description voidParseBuffer. append(ParseBuffer text)This will add aParseBufferto the end of this.voidParseBuffer. append(ParseBuffer text, int off, int len)This will add aParseBufferto the end of this.voidParseBuffer. 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 ParseBuffer Modifier and Type Field Description private ParseBufferContentTypeParser. charsetUsed to store the characters for the charset parameter.private ParseBufferContentDispositionParser. fileThis is used to capture the name of the file if it is provided.private ParseBufferContentDispositionParser. nameThis is used to capture the name of the part if it is provided.private ParseBufferContentTypeParser. nameUsed to collect the name of a content type parameter.private ParseBufferPrincipalParser. passwordKeeps the characters consumed for the password token.private ParseBufferContentTypeParser. primaryUsed to store the characters consumed for the primary type.private ParseBufferContentTypeParser. secondaryUsed to store the characters consumed for the secondary type.private ParseBufferContentDispositionParser. skipThis is the buffer used to acquire values from the header.private ParseBufferContentTypeParser. typeUsed to store the characters consumed for the type.private ParseBufferPrincipalParser. userKeeps the characters consumed for the user name token.private ParseBufferContentTypeParser. valueUsed to collect the value of the content type parameter.Methods in org.simpleframework.http.parse with parameters of type ParseBuffer Modifier and Type Method Description private voidContentTypeParser. insert(ParseBuffer name, ParseBuffer value)This will add the given name and value to the parameters map.private voidContentDispositionParser. value(ParseBuffer value)This is used to read a parameters value from the buf.
-