ContentDisposition

Inheritance: java.lang.Object

public class ContentDisposition

Represents a Content-Disposition header.

Constructors

ConstructorDescription
ContentDisposition()Initializes a new instance of the ContentDisposition class.
ContentDisposition(String disposition)Initializes a new instance of the ContentDisposition class.

Methods

MethodDescription
equals(Object obj)Determines whether the specified Object is equal to this instance.
getClass()
getCreationDate()Gets or sets the creation date.
getDispositionType()Gets or sets the type of the disposition.
getFileName()Gets or sets the file name for an attachment.
getInline()Gets or sets a value that determines the disposition type.
getModificationDate()Gets or sets the modification date.
getParameters()Gets the parameters.
getReadDate()Gets or sets the read date.
getSize()Gets or sets the size of a file attachment.
hashCode()Returns a hash code for this instance.
notify()
notifyAll()
setCreationDate(Date value)Gets or sets the creation date.
setDispositionType(String value)Gets or sets the type of the disposition.
setFileName(String value)Gets or sets the file name for an attachment.
setInline(boolean value)Gets or sets a value that determines the disposition type.
setModificationDate(Date value)Gets or sets the modification date.
setReadDate(Date value)Gets or sets the read date.
setSize(long value)Gets or sets the size of a file attachment.
toString()Returns a String that represents this instance.
wait()
wait(long arg0)
wait(long arg0, int arg1)

ContentDisposition()

public ContentDisposition()

Initializes a new instance of the ContentDisposition class.

ContentDisposition(String disposition)

public ContentDisposition(String disposition)

Initializes a new instance of the ContentDisposition class.

Parameters:

ParameterTypeDescription
dispositionjava.lang.StringA value that contains the disposition.

equals(Object obj)

public boolean equals(Object obj)

Determines whether the specified Object is equal to this instance.

Parameters:

ParameterTypeDescription
objjava.lang.ObjectThe Object to compare with this instance.

Returns: boolean - true if the specified Object is equal to this instance; otherwise, false .

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getCreationDate()

public final Date getCreationDate()

Gets or sets the creation date.

Value: A DateTime value that indicates the file creation date; otherwise, MinValue if no date was specified.

Returns: java.util.Date

getDispositionType()

public final String getDispositionType()

Gets or sets the type of the disposition.

Value: The String that contains the disposition type.

Returns: java.lang.String

getFileName()

public final String getFileName()

Gets or sets the file name for an attachment.

Value: The name of the file.

Returns: java.lang.String

getInline()

public final boolean getInline()

Gets or sets a value that determines the disposition type.

Value: true if content in the attachment is presented inline; otherwise, false.

Returns: boolean

getModificationDate()

public final Date getModificationDate()

Gets or sets the modification date.

Value: A DateTime value that indicates the file modification date; otherwise, MinValue if no date was specified.

Returns: java.util.Date

getParameters()

public final TrackingStringDictionary getParameters()

Gets the parameters.

Value: A StringDictionary that contains parameter name/value pairs.

Returns: TrackingStringDictionary

getReadDate()

public final Date getReadDate()

Gets or sets the read date.

Value: A DateTime value that indicates the file read date; otherwise, MinValue if no date was specified.

Returns: java.util.Date

getSize()

public final long getSize()

Gets or sets the size of a file attachment.

Value: A Int32 that specifies the number of bytes in the file attachment.

Returns: long

hashCode()

public int hashCode()

Returns a hash code for this instance.

Returns: int - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setCreationDate(Date value)

public final void setCreationDate(Date value)

Gets or sets the creation date.

Value: A DateTime value that indicates the file creation date; otherwise, MinValue if no date was specified.

Parameters:

ParameterTypeDescription
valuejava.util.Date

setDispositionType(String value)

public final void setDispositionType(String value)

Gets or sets the type of the disposition.

Value: The String that contains the disposition type.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setFileName(String value)

public final void setFileName(String value)

Gets or sets the file name for an attachment.

Value: The name of the file.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setInline(boolean value)

public final void setInline(boolean value)

Gets or sets a value that determines the disposition type.

Value: true if content in the attachment is presented inline; otherwise, false.

Parameters:

ParameterTypeDescription
valueboolean

setModificationDate(Date value)

public final void setModificationDate(Date value)

Gets or sets the modification date.

Value: A DateTime value that indicates the file modification date; otherwise, MinValue if no date was specified.

Parameters:

ParameterTypeDescription
valuejava.util.Date

setReadDate(Date value)

public final void setReadDate(Date value)

Gets or sets the read date.

Value: A DateTime value that indicates the file read date; otherwise, MinValue if no date was specified.

Parameters:

ParameterTypeDescription
valuejava.util.Date

setSize(long value)

public final void setSize(long value)

Gets or sets the size of a file attachment.

Value: A Int32 that specifies the number of bytes in the file attachment.

Parameters:

ParameterTypeDescription
valuelong

toString()

public String toString()

Returns a String that represents this instance.

Returns: java.lang.String - A String that represents this instance.

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int