Class w3c.www.http.HttpTokenList
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class w3c.www.http.HttpTokenList

java.lang.Object
   |
   +----w3c.www.http.BasicValue
           |
           +----w3c.www.http.HttpTokenList

public class HttpTokenList
extends BasicValue
Parse a comma separated list of tokens.

Method Index

 o addToken(String, boolean)
Add a token to this token list.
 o getValue()
Get this token list value.
 o hasToken(String, boolean)
Does this token list includes that token ?
 o parse()
Parse the byte buffer to build the token list.
 o setValue(String[])
 o updateByteValue()
Update the RFC822 compatible header value for this object.

Methods

 o parse
  protected void parse()
Parse the byte buffer to build the token list.
Overrides:
parse in class BasicValue
 o updateByteValue
  protected void updateByteValue()
Update the RFC822 compatible header value for this object.
Overrides:
updateByteValue in class BasicValue
 o getValue
  public Object getValue()
Get this token list value.
Returns:
A list of tokens, encoded as a String array, or null if undefined.
Overrides:
getValue in class BasicValue
 o setValue
  public void setValue(String tokens[])
 o addToken
  public void addToken(String token,
                       boolean always)
Add a token to this token list.
Parameters:
token - The token to add.
always - Always add to the list, even if the token us already present in the list.
 o hasToken
  public boolean hasToken(String token,
                          boolean caseSensitive)
Does this token list includes that token ?
Parameters:
token - The token to look for.
Returns:
A boolean, true if found, false otherwise.

All Packages  Class Hierarchy  This Package  Previous  Next  Index