com.businessobjects.enterprise.webi
Interface Universes


public interface Universes

The IDs of the universes that are assigned to this Web Intelligence document.


Nested Class Summary
static class Universes.Factory
          A class with methods for creating instances of the Universes type.
 
Field Summary
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 
Method Summary
 org.apache.xmlbeans.XmlString addNewUniverse()
          Appends and returns a new empty XmlString object as the last element of the array.
 void addUniverse(java.lang.String universe)
          Appends the universe ID as the last element of the array.
 java.lang.String[] getUniverseArray()
          Returns the array of universe IDs.
 java.lang.String getUniverseArray(int i)
          Returns the universe ID at the specified index position.
 org.apache.xmlbeans.XmlString insertNewUniverse(int i)
          Inserts and returns a new empty universe ID as an XmlString at a specified index.
 void insertUniverse(int i, java.lang.String universe)
          Inserts the universe ID into the ith position of the array.
 void removeUniverse(int i)
          Removes the universe ID at the specified index position.
 void setUniverseArray(int i, java.lang.String universe)
          Sets the universe ID at the specified index position.
 void setUniverseArray(java.lang.String[] universeArray)
          Sets the array of universe IDs.
 int sizeOfUniverseArray()
          Returns the number of universe IDs in the array.
 org.apache.xmlbeans.XmlString[] xgetUniverseArray()
          Internal Use Only.
 org.apache.xmlbeans.XmlString xgetUniverseArray(int i)
          Internal Use Only.
 void xsetUniverseArray(int i, org.apache.xmlbeans.XmlString universe)
          Internal Use Only.
 void xsetUniverseArray(org.apache.xmlbeans.XmlString[] universeArray)
          Internal Use Only.
 

Field Detail

type

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

Method Detail

getUniverseArray

java.lang.String[] getUniverseArray()

Returns the array of universe IDs.

Returns:
The array of universe IDs.

getUniverseArray

java.lang.String getUniverseArray(int i)

Returns the universe ID at the specified index position.

Parameters:
i - The index position.
Returns:
The universe ID as a String.

xgetUniverseArray

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


xgetUniverseArray

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


sizeOfUniverseArray

int sizeOfUniverseArray()
Returns the number of universe IDs in the array.

Returns:
The size of the universe array.

setUniverseArray

void setUniverseArray(java.lang.String[] universeArray)

Sets the array of universe IDs.

Parameters:
universeArray - The array of universe IDs.

setUniverseArray

void setUniverseArray(int i,
                      java.lang.String universe)

Sets the universe ID at the specified index position.

Parameters:
i - The index position.
universe - The universe ID.

xsetUniverseArray

void xsetUniverseArray(org.apache.xmlbeans.XmlString[] universeArray)
Internal Use Only.


xsetUniverseArray

void xsetUniverseArray(int i,
                       org.apache.xmlbeans.XmlString universe)
Internal Use Only.


insertUniverse

void insertUniverse(int i,
                    java.lang.String universe)

Inserts the universe ID into the ith position of the array.

Parameters:
i - The index position to insert the object.
universe - The universe ID as a String to be inserted.

addUniverse

void addUniverse(java.lang.String universe)
Appends the universe ID as the last element of the array.

Parameters:
universe - The universe ID as a String to be added.

insertNewUniverse

org.apache.xmlbeans.XmlString insertNewUniverse(int i)
Inserts and returns a new empty universe ID as an XmlString at a specified index.

Parameters:
i - The index position to insert the object.
Returns:
The new XmlString object.

addNewUniverse

org.apache.xmlbeans.XmlString addNewUniverse()
Appends and returns a new empty XmlString object as the last element of the array.

Returns:
A new XmlString object.

removeUniverse

void removeUniverse(int i)
Removes the universe ID at the specified index position.

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