FollowUpOptions

Inheritance: java.lang.Object

public final class FollowUpOptions

Represents options for using follow-up flags and reminders in a message.

Constructors

ConstructorDescription
FollowUpOptions()Initializes a new instance of the FollowUpOptions class.
FollowUpOptions(String flagRequest)Initializes a new instance of the FollowUpOptions class.
FollowUpOptions(String flagRequest, Date startDate, Date dueDate)Initializes a new instance of the FollowUpOptions class.
FollowUpOptions(String flagRequest, Date startDate, Date dueDate, Date reminderTime)Initializes a new instance of the FollowUpOptions class.

Methods

MethodDescription
equals(Object arg0)
getCategories()Gets or sets string that represents list of the categories, separated by semicolons (;).
getClass()
getCodePage()Gets or sets the code page.
getDueDate()Gets or sets a date indicating the due date for the flagged message.
getFlagRequest()Gets or sets a string indicating the requested action for an e-mail message.
getRecipientsFlagRequest()Gets or sets a string indicating the requested action for recipients of an e-mail message.
getRecipientsReminderTime()Gets or sets a date for recipients indicating the date and time at which the reminder should occur.
getReminderTime()Gets or sets a date indicating the date and time at which the reminder should occur.
getStartDate()Gets or sets a date specifying the starting date and time for the flagged message.
getVotingButtons()Gets or sets string that represents list of the voting buttons names, separated by semicolons (;).
hashCode()
isCompleted()Gets a value indicating whether the Message object was flagged as completed.
notify()
notifyAll()
setCategories(String value)Gets or sets string that represents list of the categories, separated by semicolons (;).
setCodePage(int value)Gets or sets the code page.
setDueDate(Date value)Gets or sets a date indicating the due date for the flagged message.
setFlagRequest(String value)Gets or sets a string indicating the requested action for an e-mail message.
setRecipientsFlagRequest(String value)Gets or sets a string indicating the requested action for recipients of an e-mail message.
setRecipientsReminderTime(Date value)Gets or sets a date for recipients indicating the date and time at which the reminder should occur.
setReminderTime(Date value)Gets or sets a date indicating the date and time at which the reminder should occur.
setStartDate(Date value)Gets or sets a date specifying the starting date and time for the flagged message.
setVotingButtons(String value)Gets or sets string that represents list of the voting buttons names, separated by semicolons (;).
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

FollowUpOptions()

public FollowUpOptions()

Initializes a new instance of the FollowUpOptions class.

FollowUpOptions(String flagRequest)

public FollowUpOptions(String flagRequest)

Initializes a new instance of the FollowUpOptions class.

Parameters:

ParameterTypeDescription
flagRequestjava.lang.StringThe flag request.

FollowUpOptions(String flagRequest, Date startDate, Date dueDate)

public FollowUpOptions(String flagRequest, Date startDate, Date dueDate)

Initializes a new instance of the FollowUpOptions class.

Parameters:

ParameterTypeDescription
flagRequestjava.lang.StringThe flag request.
startDatejava.util.DateThe start Date.
dueDatejava.util.DateThe due Date.

FollowUpOptions(String flagRequest, Date startDate, Date dueDate, Date reminderTime)

public FollowUpOptions(String flagRequest, Date startDate, Date dueDate, Date reminderTime)

Initializes a new instance of the FollowUpOptions class.

Parameters:

ParameterTypeDescription
flagRequestjava.lang.StringThe flag request.
startDatejava.util.DateThe start date.
dueDatejava.util.DateThe due date.
reminderTimejava.util.DateThe reminder time.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getCategories()

public final String getCategories()

Gets or sets string that represents list of the categories, separated by semicolons (;).

Returns: java.lang.String

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getCodePage()

public final int getCodePage()

Gets or sets the code page.

Returns: int

getDueDate()

public final Date getDueDate()

Gets or sets a date indicating the due date for the flagged message.

Returns: java.util.Date

getFlagRequest()

public final String getFlagRequest()

Gets or sets a string indicating the requested action for an e-mail message.

Returns: java.lang.String

getRecipientsFlagRequest()

public final String getRecipientsFlagRequest()

Gets or sets a string indicating the requested action for recipients of an e-mail message.

Returns: java.lang.String

getRecipientsReminderTime()

public final Date getRecipientsReminderTime()

Gets or sets a date for recipients indicating the date and time at which the reminder should occur.

Returns: java.util.Date

getReminderTime()

public final Date getReminderTime()

Gets or sets a date indicating the date and time at which the reminder should occur.

Returns: java.util.Date

getStartDate()

public final Date getStartDate()

Gets or sets a date specifying the starting date and time for the flagged message.

Returns: java.util.Date

getVotingButtons()

public final String getVotingButtons()

Gets or sets string that represents list of the voting buttons names, separated by semicolons (;).

Returns: java.lang.String

hashCode()

public native int hashCode()

Returns: int

isCompleted()

public final boolean isCompleted()

Gets a value indicating whether the Message object was flagged as completed.

Returns: boolean

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setCategories(String value)

public final void setCategories(String value)

Gets or sets string that represents list of the categories, separated by semicolons (;).

Parameters:

ParameterTypeDescription
valuejava.lang.String

setCodePage(int value)

public final void setCodePage(int value)

Gets or sets the code page.

Parameters:

ParameterTypeDescription
valueint

setDueDate(Date value)

public final void setDueDate(Date value)

Gets or sets a date indicating the due date for the flagged message.

Parameters:

ParameterTypeDescription
valuejava.util.Date

setFlagRequest(String value)

public final void setFlagRequest(String value)

Gets or sets a string indicating the requested action for an e-mail message.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setRecipientsFlagRequest(String value)

public final void setRecipientsFlagRequest(String value)

Gets or sets a string indicating the requested action for recipients of an e-mail message.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setRecipientsReminderTime(Date value)

public final void setRecipientsReminderTime(Date value)

Gets or sets a date for recipients indicating the date and time at which the reminder should occur.

Parameters:

ParameterTypeDescription
valuejava.util.Date

setReminderTime(Date value)

public final void setReminderTime(Date value)

Gets or sets a date indicating the date and time at which the reminder should occur.

Parameters:

ParameterTypeDescription
valuejava.util.Date

setStartDate(Date value)

public final void setStartDate(Date value)

Gets or sets a date specifying the starting date and time for the flagged message.

Parameters:

ParameterTypeDescription
valuejava.util.Date

setVotingButtons(String value)

public final void setVotingButtons(String value)

Gets or sets string that represents list of the voting buttons names, separated by semicolons (;).

Parameters:

ParameterTypeDescription
valuejava.lang.String

toString()

public String toString()

Returns: java.lang.String

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