com.businessobjects.enterprise.universe
Interface UserGroupOrderedIDs


public interface UserGroupOrderedIDs

The user group ordered IDs that are assigned to this universe object.


Nested Class Summary
static class UserGroupOrderedIDs.Factory
          A class with methods for creating instances of the UserGroupOrderedIDs type.
 
Field Summary
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 
Method Summary
 org.apache.xmlbeans.XmlString addNewUserGroup()
          Internal Use Only.
 void addUserGroup(java.lang.String userGroup)
          Appends a user group ID as the last element of the array.
 java.lang.String[] getUserGroupArray()
          Returns the array of user group IDs.
 java.lang.String getUserGroupArray(int i)
          Returns the user group ID at the specified index position.
 org.apache.xmlbeans.XmlString insertNewUserGroup(int i)
          Internal Use Only.
 void insertUserGroup(int i, java.lang.String userGroup)
          Inserts a user group ID at a specified index.
 void removeUserGroup(int i)
          Removes the ith user group ID.
 void setUserGroupArray(int i, java.lang.String userGroup)
          Sets the user group ID at the specified index position.
 void setUserGroupArray(java.lang.String[] userGroupArray)
          Sets the array of user group IDs.
 int sizeOfUserGroupArray()
          Returns the number of user group IDs in the array.
 org.apache.xmlbeans.XmlString[] xgetUserGroupArray()
          Internal Use Only.
 org.apache.xmlbeans.XmlString xgetUserGroupArray(int i)
          Internal Use Only.
 void xsetUserGroupArray(int i, org.apache.xmlbeans.XmlString userGroup)
          Internal Use Only.
 void xsetUserGroupArray(org.apache.xmlbeans.XmlString[] userGroupArray)
          Internal Use Only.
 

Field Detail

type

static final org.apache.xmlbeans.SchemaType type
Internal Use Only.

Method Detail

getUserGroupArray

java.lang.String[] getUserGroupArray()

Returns the array of user group IDs.

Returns:
The array of user group IDs.

getUserGroupArray

java.lang.String getUserGroupArray(int i)

Returns the user group ID at the specified index position.

Parameters:
i - The index position.
Returns:
The user group ID.

xgetUserGroupArray

org.apache.xmlbeans.XmlString[] xgetUserGroupArray()
Internal Use Only.


xgetUserGroupArray

org.apache.xmlbeans.XmlString xgetUserGroupArray(int i)
Internal Use Only.


sizeOfUserGroupArray

int sizeOfUserGroupArray()
Returns the number of user group IDs in the array.

Returns:
The size of the user group IDs array.

setUserGroupArray

void setUserGroupArray(java.lang.String[] userGroupArray)

Sets the array of user group IDs.

Parameters:
userGroupArray - The array of user group IDs.

setUserGroupArray

void setUserGroupArray(int i,
                       java.lang.String userGroup)

Sets the user group ID at the specified index position.

Parameters:
i - The index position.
userGroup - The user group ID.

xsetUserGroupArray

void xsetUserGroupArray(org.apache.xmlbeans.XmlString[] userGroupArray)
Internal Use Only.


xsetUserGroupArray

void xsetUserGroupArray(int i,
                        org.apache.xmlbeans.XmlString userGroup)
Internal Use Only.


insertUserGroup

void insertUserGroup(int i,
                     java.lang.String userGroup)
Inserts a user group ID at a specified index.

Parameters:
i - The index position to insert the user group ID.
userGroup - The user group ID to be inserted.

addUserGroup

void addUserGroup(java.lang.String userGroup)
Appends a user group ID as the last element of the array.

Parameters:
userGroup - The user group ID to be added.

insertNewUserGroup

org.apache.xmlbeans.XmlString insertNewUserGroup(int i)
Internal Use Only.


addNewUserGroup

org.apache.xmlbeans.XmlString addNewUserGroup()
Internal Use Only.


removeUserGroup

void removeUserGroup(int i)
Removes the ith user group ID.

Parameters:
i - The index position for the user group ID to be removed.