public class MicroblogConfiguration extends Object implements Serializable
Constructor and Description |
---|
MicroblogConfiguration() |
Modifier and Type | Method and Description |
---|---|
void |
addMicroblogProfile(int index,
MicroblogProfile vMicroblogProfile) |
void |
addMicroblogProfile(MicroblogProfile vMicroblogProfile) |
Enumeration<MicroblogProfile> |
enumerateMicroblogProfile()
Method enumerateMicroblogProfile.
|
boolean |
equals(Object obj)
Overrides the Object.equals method.
|
String |
getDefaultMicroblogProfileName()
Returns the value of field 'defaultMicroblogProfileName'.
|
MicroblogProfile[] |
getMicroblogProfile()
Method getMicroblogProfile.Returns the contents of the collection in an
Array.
|
MicroblogProfile |
getMicroblogProfile(int index)
Method getMicroblogProfile.
|
List<MicroblogProfile> |
getMicroblogProfileCollection()
Method getMicroblogProfileCollection.Returns a reference to
'microblogProfileList'.
|
int |
getMicroblogProfileCount()
Method getMicroblogProfileCount.
|
int |
hashCode()
Method hashCode.
|
Iterator<MicroblogProfile> |
iterateMicroblogProfile()
Method iterateMicroblogProfile.
|
void |
removeAllMicroblogProfile() |
boolean |
removeMicroblogProfile(MicroblogProfile vMicroblogProfile)
Method removeMicroblogProfile.
|
MicroblogProfile |
removeMicroblogProfileAt(int index)
Method removeMicroblogProfileAt.
|
void |
setDefaultMicroblogProfileName(String defaultMicroblogProfileName)
Sets the value of field 'defaultMicroblogProfileName'.
|
void |
setMicroblogProfile(int index,
MicroblogProfile vMicroblogProfile) |
void |
setMicroblogProfile(List<MicroblogProfile> vMicroblogProfileList)
Sets the value of 'microblogProfileList' by copying the given Vector.
|
void |
setMicroblogProfile(MicroblogProfile[] vMicroblogProfileArray) |
void |
setMicroblogProfileCollection(List<MicroblogProfile> microblogProfileList)
Deprecated.
|
public void addMicroblogProfile(MicroblogProfile vMicroblogProfile) throws IndexOutOfBoundsException
vMicroblogProfile
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic void addMicroblogProfile(int index, MicroblogProfile vMicroblogProfile) throws IndexOutOfBoundsException
index
- vMicroblogProfile
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic Enumeration<MicroblogProfile> enumerateMicroblogProfile()
public boolean equals(Object obj)
public String getDefaultMicroblogProfileName()
public MicroblogProfile getMicroblogProfile(int index) throws IndexOutOfBoundsException
index
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic MicroblogProfile[] getMicroblogProfile()
Note: Just in case the collection contents are changing in another thread, we pass a 0-length Array of the correct type into the API call. This way we know that the Array returned is of exactly the correct length.
public List<MicroblogProfile> getMicroblogProfileCollection()
public int getMicroblogProfileCount()
public int hashCode()
public Iterator<MicroblogProfile> iterateMicroblogProfile()
public void removeAllMicroblogProfile()
public boolean removeMicroblogProfile(MicroblogProfile vMicroblogProfile)
vMicroblogProfile
- public MicroblogProfile removeMicroblogProfileAt(int index)
index
- public void setDefaultMicroblogProfileName(String defaultMicroblogProfileName)
defaultMicroblogProfileName
- the value of field
'defaultMicroblogProfileName'.public void setMicroblogProfile(int index, MicroblogProfile vMicroblogProfile) throws IndexOutOfBoundsException
index
- vMicroblogProfile
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic void setMicroblogProfile(MicroblogProfile[] vMicroblogProfileArray)
vMicroblogProfileArray
- public void setMicroblogProfile(List<MicroblogProfile> vMicroblogProfileList)
vMicroblogProfileList
- the Vector to copy.public void setMicroblogProfileCollection(List<MicroblogProfile> microblogProfileList)
microblogProfileList
- the Vector to set.Copyright © 2017. All rights reserved.