Home » openjdk-7 » java » awt » datatransfer » [javadoc | source]
java.awt.datatransfer
class: MimeTypeParameterList [javadoc | source]
java.lang.Object
   java.awt.datatransfer.MimeTypeParameterList

All Implemented Interfaces:
    Cloneable

An object that encapsualtes the parameter list of a MimeType as defined in RFC 2045 and 2046.
Constructor:
 public MimeTypeParameterList() 
 public MimeTypeParameterList(String rawdata) throws MimeTypeParseException 
Method from java.awt.datatransfer.MimeTypeParameterList Summary:
clone,   equals,   get,   getNames,   hashCode,   isEmpty,   parse,   remove,   set,   size,   toString
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.awt.datatransfer.MimeTypeParameterList Detail:
 public Object clone() 
 public boolean equals(Object thatObject) 
    Two parameter lists are considered equal if they have exactly the same set of parameter names and associated values. The order of the parameters is not considered.
 public String get(String name) 
    Retrieve the value associated with the given name, or null if there is no current association.
 public Enumeration getNames() 
    Retrieve an enumeration of all the names in this list.
 public int hashCode() 
 public boolean isEmpty() 
    Determine whether or not this list is empty.
 protected  void parse(String rawdata) throws MimeTypeParseException 
    A routine for parsing the parameter list out of a String.
 public  void remove(String name) 
    Remove any value associated with the given name.
 public  void set(String name,
    String value) 
    Set the value to be associated with the given name, replacing any previous association.
 public int size() 
    return the number of name-value pairs in this list.
 public String toString()