KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > activation > MimeType

javax.activation
Class MimeType

java.lang.Object
  extended byjavax.activation.MimeType
All Implemented Interfaces:
Externalizable, Serializable
See Also:
Top Examples, Source Code

public String getBaseType()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getParameter(String name)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MimeTypeParameterList getParameters()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getPrimaryType()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getSubType()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean match(String rawdata)
              throws MimeTypeParseException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean match(MimeType type)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MimeType()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MimeType(String rawdata)
         throws MimeTypeParseException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public MimeType(String primary,
                String sub)
         throws MimeTypeParseException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void readExternal(ObjectInput in)
                  throws IOException,
                         ClassNotFoundException
See Also:
Externalizable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removeParameter(String name)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setParameter(String name,
                         String value)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setPrimaryType(String primary)
                    throws MimeTypeParseException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setSubType(String sub)
                throws MimeTypeParseException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String toString()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void writeExternal(ObjectOutput out)
                   throws IOException
See Also:
Externalizable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags