com.aspose.email
Class ContentType

java.lang.Object
  extended by com.aspose.email.ContentType

public class ContentType
extends Object

Represents a Content-Type header.


Constructor Summary
ContentType()
           Initializes a new instance of the ContentType class.
ContentType(String contentType)
           Initializes a new instance of the ContentType class.
 
Method Summary
 boolean equals(Object rparam)
           Determines whether the specified System.Object is equal to this instance.
 String getBoundary()
           Gets or sets the value of the boundary parameter included in the Content-Type header.
 String getCharSet()
           Gets or sets the value of the charset parameter.
 String getMediaType()
           Gets or sets the internet media type.
 String getName()
           Gets or sets the value of the name parameter.
 HashMap<String,String> getParameters()
           Gets the dictionary that contains the parameters.
 int hashCode()
           Returns a hash code for this instance.
 void setBoundary(String value)
           
 void setCharSet(String value)
           
 void setMediaType(String value)
           
 void setName(String value)
           
 String toString()
           Returns a System.String that represents this instance.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ContentType

public ContentType()

Initializes a new instance of the ContentType class.


ContentType

public ContentType(String contentType)

Initializes a new instance of the ContentType class.

Parameters:
contentType - Type of the content.
Method Detail

getBoundary

public String getBoundary()

Gets or sets the value of the boundary parameter included in the Content-Type header.

Value: A string that contains the value of boundary parameter.


setBoundary

public void setBoundary(String value)

getCharSet

public String getCharSet()

Gets or sets the value of the charset parameter.

Value: A string that contains the value of charset parameter.


setCharSet

public void setCharSet(String value)

getMediaType

public String getMediaType()

Gets or sets the internet media type.

Value: A String that contains the media type.


setMediaType

public void setMediaType(String value)

getName

public String getName()

Gets or sets the value of the name parameter.

Value: A String that contains the name.


setName

public void setName(String value)

getParameters

public HashMap<String,String> getParameters()

Gets the dictionary that contains the parameters.

Value: A StringDictionary that contains name and value pairs.


toString

public String toString()

Returns a System.String that represents this instance.

Overrides:
toString in class Object
Returns:
A System.String that represents this instance.

equals

public boolean equals(Object rparam)

Determines whether the specified System.Object is equal to this instance.

Overrides:
equals in class Object
Parameters:
rparam - The System.Object to compare with this instance.
Returns:
true if the specified System.Object is equal to this instance; otherwise, false.

hashCode

public int hashCode()

Returns a hash code for this instance.

Overrides:
hashCode in class Object
Returns:
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.


Copyright (c) 2002-2012 Aspose Pty Ltd. All Rights Reserved.