com.businessobjects.enterprise.webi
Interface Values


public interface Values

A collection of prompt values.


Nested Class Summary
static class Values.Factory
          A class with methods for creating instances of the Values type.
 
Field Summary
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 
Method Summary
 org.apache.xmlbeans.XmlString addNewValue()
          Appends and returns a new empty XmlString object as the last element of the array.
 void addValue(java.lang.String value)
          Appends the prompt value as the last element of the array.
 java.lang.String[] getValueArray()
          Returns the array of prompt values.
 java.lang.String getValueArray(int i)
          Returns the prompt value at the specified index position.
 org.apache.xmlbeans.XmlString insertNewValue(int i)
          Inserts and returns a new empty XmlString object at a specified index.
 void insertValue(int i, java.lang.String value)
          Inserts the prompt value into the ith position of the array.
 void removeValue(int i)
          Removes the ith prompt value.
 void setValueArray(int i, java.lang.String value)
          Sets the prompt value at the specified index position.
 void setValueArray(java.lang.String[] valueArray)
          Sets the array of prompt values.
 int sizeOfValueArray()
          Returns the number of prompt values in the array.
 org.apache.xmlbeans.XmlString[] xgetValueArray()
          Internal Use Only.
 org.apache.xmlbeans.XmlString xgetValueArray(int i)
          Internal Use Only.
 void xsetValueArray(int i, org.apache.xmlbeans.XmlString value)
          Internal Use Only.
 void xsetValueArray(org.apache.xmlbeans.XmlString[] valueArray)
          Internal Use Only.
 

Field Detail

type

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

Method Detail

getValueArray

java.lang.String[] getValueArray()

Returns the array of prompt values.

Returns:
The array of prompt values.

getValueArray

java.lang.String getValueArray(int i)

Returns the prompt value at the specified index position.

Parameters:
i - The index position.
Returns:
The prompt value as a String.

xgetValueArray

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


xgetValueArray

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


sizeOfValueArray

int sizeOfValueArray()
Returns the number of prompt values in the array.

Returns:
The size of the prompt value array.

setValueArray

void setValueArray(java.lang.String[] valueArray)

Sets the array of prompt values.

Parameters:
valueArray - The array of prompt values.

setValueArray

void setValueArray(int i,
                   java.lang.String value)

Sets the prompt value at the specified index position.

Parameters:
i - The index position.
value - The prompt value.

xsetValueArray

void xsetValueArray(org.apache.xmlbeans.XmlString[] valueArray)
Internal Use Only.


xsetValueArray

void xsetValueArray(int i,
                    org.apache.xmlbeans.XmlString value)
Internal Use Only.


insertValue

void insertValue(int i,
                 java.lang.String value)

Inserts the prompt value into the ith position of the array.

Parameters:
i - The index position to insert the prompt value.
value - The prompt value as a String to be inserted.

addValue

void addValue(java.lang.String value)
Appends the prompt value as the last element of the array.

Parameters:
value - The prompt value as a String to be added to the array.

insertNewValue

org.apache.xmlbeans.XmlString insertNewValue(int i)
Inserts and returns a new empty XmlString object at a specified index.

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

addNewValue

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

Returns:
A new XmlString object.

removeValue

void removeValue(int i)
Removes the ith prompt value.

Parameters:
i - The index position for the prompt value to be removed.