public interface ConferenceInfo
Modifier and Type | Interface | Description |
---|---|---|
static class |
ConferenceInfo.State |
Modifier and Type | Method | Description |
---|---|---|
void |
addParticipant(Address participant) |
Add a participant to the conference.
|
ConferenceInfo |
clone() |
Clone an object
ConferenceInfo . |
long |
getDateTime() |
Retrieve the date and time of the conference.
|
java.lang.String |
getDescription() |
Retrieve the description of the conference.
|
int |
getDuration() |
Retrieve the duration (in minutes) of the conference.
|
java.lang.String |
getIcalendarString() |
Retrieve the conference as an Icalendar string.
|
long |
getNativePointer() |
Gets the native pointer used by this class to make native method calls.
|
Address |
getOrganizer() |
Retrieve the organizer of the conference.
|
Address[] |
getParticipants() |
Retrieve the list of participants.
|
ConferenceInfo.State |
getState() |
Retrieve the state of the conference info.
|
java.lang.String |
getSubject() |
Retrieve the subject of the conference.
|
Address |
getUri() |
Retrieve the URI of the conference.
|
java.lang.Object |
getUserData() |
Gets the object stored in this object user's data
|
void |
removeParticipant(Address participant) |
Remove a participant from the conference.
|
void |
setDateTime(long datetime) |
Set the date and time of the conference.
|
void |
setDescription(java.lang.String description) |
Set the description of the conference.
|
void |
setDuration(int duration) |
Set the duration (in minutes) of the conference.
|
void |
setOrganizer(Address organizer) |
Set the organizer of the conference.
|
void |
setParticipants(Address[] participants) |
Set the list of participants.
|
void |
setSubject(java.lang.String subject) |
Set the subject of the conference.
|
void |
setUserData(java.lang.Object data) |
Sets the object to store in this object user's data
|
java.lang.String |
toString() |
long getDateTime()
void setDateTime(long datetime)
datetime
- The date and time of the conference. @Nullable java.lang.String getDescription()
void setDescription(@Nullable java.lang.String description)
description
- The description of the conference. int getDuration()
void setDuration(int duration)
duration
- The duration of the conference. @Nullable java.lang.String getIcalendarString()
@Nullable Address getOrganizer()
Address
of the conference's organizer. void setOrganizer(@Nullable Address organizer)
organizer
- The Address
of the conference's organizer. @NonNull Address[] getParticipants()
void setParticipants(@Nullable Address[] participants)
participants
- The list of participants to set. @Nullable ConferenceInfo.State getState()
ConferenceInfo.State
object. @Nullable java.lang.String getSubject()
void setSubject(@Nullable java.lang.String subject)
subject
- The subject of the conference. @Nullable Address getUri()
Address
). void addParticipant(@NonNull Address participant)
participant
- The participant (Address
) to add. @NonNull ConferenceInfo clone()
ConferenceInfo
object. void removeParticipant(@NonNull Address participant)
participant
- The participant (Address
) to remove. void setUserData(java.lang.Object data)
data
- the object to storejava.lang.Object getUserData()
long getNativePointer()
java.lang.String toString()
toString
in class java.lang.Object