ContentDisposition
Inheritance: java.lang.Object
public class ContentDisposition
Represents a Content-Disposition header.
Constructors
Constructor | Description |
---|---|
ContentDisposition() | Initializes a new instance of the ContentDisposition class. |
ContentDisposition(String disposition) | Initializes a new instance of the ContentDisposition class. |
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
disposition | java.lang.String | A value that contains the disposition. |
equals(Object obj)
public boolean equals(Object obj)
Determines whether the specified Object is equal to this instance.
Parameters:
Parameter | Type | Description |
---|---|---|
obj | java.lang.Object | The 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:
Parameter | Type | Description |
---|---|---|
value | java.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:
Parameter | Type | Description |
---|---|---|
value | java.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:
Parameter | Type | Description |
---|---|---|
value | java.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:
Parameter | Type | Description |
---|---|---|
value | boolean |
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:
Parameter | Type | Description |
---|---|---|
value | java.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:
Parameter | Type | Description |
---|---|---|
value | java.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:
Parameter | Type | Description |
---|---|---|
value | long |
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:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |