AssociatedPersonsList

Inheritance: java.lang.Object

All Implemented Interfaces: com.aspose.ms.System.Collections.Generic.IGenericList

public class AssociatedPersonsList implements System.Collections.Generic.IGenericList<AssociatedPerson>

List of associated persons for a contact

Constructors

ConstructorDescription
AssociatedPersonsList()

Methods

MethodDescription
add(AssociatedPerson value)Adds an item to the list.
addItem(AssociatedPerson value)
clear()Removes all items from the list.
contains(AssociatedPerson value)Determines whether the list contains a specific value.
containsItem(AssociatedPerson value)
copyTo(AssociatedPerson[] array, int index)Copies the elements to an array, starting at a particular array index.
copyToTArray(AssociatedPerson[] array, int index)
equals(Object arg0)
getAssistant()Default assistant
getBrother()Brother
getChild()Child
getClass()
getDomesticPartner()Default domestic partner
getFather()Father
getFriend()Default friend
getManager()Default manager
getMother()Mother
getParent()Parent
getPartner()Default partner
getReferredBy()Default referred by
getRelative()Relative
getSister()Sister
getSpouse()Spouse
getSyncRoot()Gets an object that can be used to synchronize access to the ICollection.
get_Item(int index)Gets or sets the element at the specified index.
hashCode()
indexOf(AssociatedPerson value)Determines the index of a specific item in the list.
indexOfItem(AssociatedPerson value)
insert(int index, AssociatedPerson value)Inserts an item to the list at the specified index.
insertItem(int index, AssociatedPerson value)
isReadOnly()Gets a value indicating whether the list is read-only.
isSynchronized()Gets a value indicating whether access to the ICollection is synchronized (thread safe).
iterator()Returns an enumerator that iterates through a collection.
notify()
notifyAll()
remove(AssociatedPerson value)Removes the first occurrence of a specific object from the list.
removeAt(int index)Removes the list item at the specified index.
removeItem(AssociatedPerson value)
setAssistant(String value)Default assistant
setBrother(String value)Brother
setChild(String value)Child
setDomesticPartner(String value)Default domestic partner
setFather(String value)Father
setFriend(String value)Default friend
setManager(String value)Default manager
setMother(String value)Mother
setParent(String value)Parent
setPartner(String value)Default partner
setReferredBy(String value)Default referred by
setRelative(String value)Relative
setSister(String value)Sister
setSpouse(String value)Spouse
set_Item(int index, AssociatedPerson value)Gets or sets the element at the specified index.
size()Gets the number of elements contained in the ICollection.
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

AssociatedPersonsList()

public AssociatedPersonsList()

add(AssociatedPerson value)

public final void add(AssociatedPerson value)

Adds an item to the list.

Parameters:

ParameterTypeDescription
valueAssociatedPersonThe Object to add to the list.

addItem(AssociatedPerson value)

public void addItem(AssociatedPerson value)

Parameters:

ParameterTypeDescription
valueAssociatedPerson

clear()

public final void clear()

Removes all items from the list.

contains(AssociatedPerson value)

public final boolean contains(AssociatedPerson value)

Determines whether the list contains a specific value.

Parameters:

ParameterTypeDescription
valueAssociatedPersonThe object to locate in the list.

Returns: boolean - true if the object is found in the list; otherwise, false.

containsItem(AssociatedPerson value)

public boolean containsItem(AssociatedPerson value)

Parameters:

ParameterTypeDescription
valueAssociatedPerson

Returns: boolean

copyTo(AssociatedPerson[] array, int index)

public final void copyTo(AssociatedPerson[] array, int index)

Copies the elements to an array, starting at a particular array index.

Parameters:

ParameterTypeDescription
arrayAssociatedPerson[]The one-dimensional array that is the destination of the elements copied from collections. The array must have zero-based indexing.
indexintThe zero-based index in array at which copying begins.

copyToTArray(AssociatedPerson[] array, int index)

public void copyToTArray(AssociatedPerson[] array, int index)

Parameters:

ParameterTypeDescription
arrayAssociatedPerson[]
indexint

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getAssistant()

public final String getAssistant()

Default assistant

Returns: java.lang.String

getBrother()

public final String getBrother()

Brother

Returns: java.lang.String

getChild()

public final String getChild()

Child

Returns: java.lang.String

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getDomesticPartner()

public final String getDomesticPartner()

Default domestic partner

Returns: java.lang.String

getFather()

public final String getFather()

Father

Returns: java.lang.String

getFriend()

public final String getFriend()

Default friend

Returns: java.lang.String

getManager()

public final String getManager()

Default manager

Returns: java.lang.String

getMother()

public final String getMother()

Mother

Returns: java.lang.String

getParent()

public final String getParent()

Parent

Returns: java.lang.String

getPartner()

public final String getPartner()

Default partner

Returns: java.lang.String

getReferredBy()

public final String getReferredBy()

Default referred by

Returns: java.lang.String

getRelative()

public final String getRelative()

Relative

Returns: java.lang.String

getSister()

public final String getSister()

Sister

Returns: java.lang.String

getSpouse()

public final String getSpouse()

Spouse

Returns: java.lang.String

getSyncRoot()

public final Object getSyncRoot()

Gets an object that can be used to synchronize access to the ICollection.

Returns: java.lang.Object - An object that can be used to synchronize access to the ICollection.

get_Item(int index)

public final AssociatedPerson get_Item(int index)

Gets or sets the element at the specified index.

Parameters:

ParameterTypeDescription
indexintThe zero-based index of the element to get or set.

Returns: AssociatedPerson - The element at the specified index.

hashCode()

public native int hashCode()

Returns: int

indexOf(AssociatedPerson value)

public final int indexOf(AssociatedPerson value)

Determines the index of a specific item in the list.

Parameters:

ParameterTypeDescription
valueAssociatedPersonThe Object to locate in the list.

Returns: int - The index of value if found in the list; otherwise, -1.

indexOfItem(AssociatedPerson value)

public int indexOfItem(AssociatedPerson value)

Parameters:

ParameterTypeDescription
valueAssociatedPerson

Returns: int

insert(int index, AssociatedPerson value)

public final void insert(int index, AssociatedPerson value)

Inserts an item to the list at the specified index.

Parameters:

ParameterTypeDescription
indexintThe zero-based index at which value should be inserted.
valueAssociatedPersonThe Object to insert into the list.

insertItem(int index, AssociatedPerson value)

public void insertItem(int index, AssociatedPerson value)

Parameters:

ParameterTypeDescription
indexint
valueAssociatedPerson

isReadOnly()

public final boolean isReadOnly()

Gets a value indicating whether the list is read-only.

Returns: boolean - true if the list is read-only; otherwise, false.

isSynchronized()

public final boolean isSynchronized()

Gets a value indicating whether access to the ICollection is synchronized (thread safe).

Returns: boolean - true if access to the ICollection is synchronized (thread safe); otherwise, false.

iterator()

public final System.Collections.Generic.IGenericEnumerator<AssociatedPerson> iterator()

Returns an enumerator that iterates through a collection.

Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerator<com.aspose.email.AssociatedPerson> - An IEnumerator object that can be used to iterate through the collection.

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

remove(AssociatedPerson value)

public final boolean remove(AssociatedPerson value)

Removes the first occurrence of a specific object from the list.

Parameters:

ParameterTypeDescription
valueAssociatedPersonThe Object to remove from the list.

Returns: boolean

removeAt(int index)

public final void removeAt(int index)

Removes the list item at the specified index.

Parameters:

ParameterTypeDescription
indexintThe zero-based index of the item to remove.

removeItem(AssociatedPerson value)

public boolean removeItem(AssociatedPerson value)

Parameters:

ParameterTypeDescription
valueAssociatedPerson

Returns: boolean

setAssistant(String value)

public final void setAssistant(String value)

Default assistant

Parameters:

ParameterTypeDescription
valuejava.lang.String

setBrother(String value)

public final void setBrother(String value)

Brother

Parameters:

ParameterTypeDescription
valuejava.lang.String

setChild(String value)

public final void setChild(String value)

Child

Parameters:

ParameterTypeDescription
valuejava.lang.String

setDomesticPartner(String value)

public final void setDomesticPartner(String value)

Default domestic partner

Parameters:

ParameterTypeDescription
valuejava.lang.String

setFather(String value)

public final void setFather(String value)

Father

Parameters:

ParameterTypeDescription
valuejava.lang.String

setFriend(String value)

public final void setFriend(String value)

Default friend

Parameters:

ParameterTypeDescription
valuejava.lang.String

setManager(String value)

public final void setManager(String value)

Default manager

Parameters:

ParameterTypeDescription
valuejava.lang.String

setMother(String value)

public final void setMother(String value)

Mother

Parameters:

ParameterTypeDescription
valuejava.lang.String

setParent(String value)

public final void setParent(String value)

Parent

Parameters:

ParameterTypeDescription
valuejava.lang.String

setPartner(String value)

public final void setPartner(String value)

Default partner

Parameters:

ParameterTypeDescription
valuejava.lang.String

setReferredBy(String value)

public final void setReferredBy(String value)

Default referred by

Parameters:

ParameterTypeDescription
valuejava.lang.String

setRelative(String value)

public final void setRelative(String value)

Relative

Parameters:

ParameterTypeDescription
valuejava.lang.String

setSister(String value)

public final void setSister(String value)

Sister

Parameters:

ParameterTypeDescription
valuejava.lang.String

setSpouse(String value)

public final void setSpouse(String value)

Spouse

Parameters:

ParameterTypeDescription
valuejava.lang.String

set_Item(int index, AssociatedPerson value)

public final void set_Item(int index, AssociatedPerson value)

Gets or sets the element at the specified index.

Parameters:

ParameterTypeDescription
indexintThe zero-based index of the element to get or set.
valueAssociatedPersonThe element at the specified index.

size()

public final int size()

Gets the number of elements contained in the ICollection.

Returns: int - The number of elements contained in the ICollection.

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