com.microstrategy.web.objects.WebPropertyGroup |
WebPropertyGroup represents a collection of WebPropertySet
objects.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract Enumeration |
elements()
Returns an Enumeration of the collection of WebPropertySet objects inside the group.
| ||||||||||
abstract WebPropertySet |
findItemByID(String dssID)
Returns the WebPropertySet object according to the specified DSSID.
| ||||||||||
abstract WebPropertySet |
findItemByName(String propertySetName)
Returns the WebPropertySet object according to the specified name.
| ||||||||||
abstract WebPropertySet |
get(int index)
Returns the WebPropertySet object according to the index.
| ||||||||||
abstract WebPropertySet |
getItemByID(String dssID)
Returns the WebPropertySet object according to the specified DSSID.
| ||||||||||
abstract WebPropertySet |
getItemByName(String propertySetName)
Returns the WebPropertySet object according to the specified name.
| ||||||||||
abstract boolean | hasItemByName(String propertySetName) | ||||||||||
abstract boolean |
isEmpty()
Returns true if the group has no WebPropertySet object, else return false.
| ||||||||||
abstract int |
size()
Returns the size of the group, the number of WebPropertySet objects inside the group.
|
Returns an Enumeration of the collection of WebPropertySet objects inside the group.
WebPropertySet
objects inside the WebPropertyGroup.
Returns the WebPropertySet object according to the specified DSSID. Null is returned if object does not exist.
dssID | The DSSID of the searching propertySet. |
---|
WebPropertySet
object according to the DSSID.Returns the WebPropertySet object according to the specified name. Null is returned if object does not exist.
propertySetName | the name of the searching propertySet |
---|
WebPropertySet
object according to the name.Returns the WebPropertySet object according to the index.
index | the 0-based index |
---|
WebPropertySet
object according to the index.IndexOutOfBoundsException | If the index is less than 0 or greater than the size of the group, an exception of IndexOutOfBoundsException will be thrown. |
---|
Returns the WebPropertySet object according to the specified DSSID.
dssID | The DSSID of the searching propertySet. |
---|
WebPropertySet
object according to the DSSID.IllegalArgumentException | If there is no propertySet in this propertyGroup whose name is the same as the input parameter, an exception of IllegalArgumentException will be thrown. |
---|
Returns the WebPropertySet object according to the specified name.
propertySetName | the name of the searching propertySet |
---|
WebPropertySet
object according to the name.IllegalArgumentException | If there is no propertySet in this propertyGroup whose name is the same as the input parameter, an exception of IllegalArgumentException will be thrown. |
---|
Returns true if the group has no WebPropertySet object, else return false.
Returns the size of the group, the number of WebPropertySet objects inside the group.