|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface DataSourceSpecification
The DataSourceSpecification interface provides information about the structure and contents of a universe (data source). This
interface provides access to classes and hierarchies
in the universe. To construct a query, first, you must find these objects in the
DataSourceSpecification for a universe, and then obtain the keys for these
objects. You can then use the keys to include objects in your query.
Example: Obtaining a DataSourceSpecification for a universe.
It is assumed that you have obtained a QueryService instance called boQuerySrv.
See QueryService for information about
how to obtain a QueryService instance.
// Obtain a list of the universes, or data sources, available in the system.
DataSource[] boUniverses = boQuerySrv.getDataSourceList();
// Choose a universe to use for your query and obtain the UID for the universe. For this example, we will choose the first Universe in the list.
String boUniverseUID = boUniverses[0].getUID();
// Obtain the DataSourceSpecification for the chosen universe.
DataSourceSpecification boUniverseSpecification = boQuerySrv.getDataSource(boUniverseUID);
After you obtain a DataSourceSpecification instance for the universe you want to use
to build your query, you need to find all of the QueryResult, QueryCondition, QueryScope, and QuerySort objects
in the universe. See DataSourceObject for information
about how to find these objects in the universe.
DataSourceObject,
QuerySpecification,
QueryCondition,
QueryService| Nested Class Summary | |
|---|---|
static class |
DataSourceSpecification.Factory
A class with methods for creating instances of the DataSourceSpecification type |
| Field Summary | |
|---|---|
static org.apache.xmlbeans.SchemaType |
type
Internal Use Only. |
| Method Summary | |
|---|---|
DataSourceClass |
addNewDataSourceClass()
Internal Use Only. |
DataSourceParameter |
addNewDataSourceParameters()
Internal Use Only. |
DataSourceParameterValue |
addNewDataSourceParameterValues()
Internal Use Only. |
Hierarchy |
addNewHierarchy()
Internal Use Only. |
Sampling |
addNewSampling()
Internal Use Only. |
boolean |
getAdvancedConditionSupported()
Returns true if the DataSource object supports Advanced Condition. |
boolean |
getBothOperatorSupported()
Returns true if the DataSource object supports the use of the "Both" operator. |
boolean |
getCombinedQuerySupported()
Returns true if the DataSource object supports combined queries. |
boolean |
getConditionObjectValueSupported()
Returns true if the DataSource supports Object Value Condition. |
DataSourceClass[] |
getDataSourceClassArray()
Gets an array of DataSourceClass instances in the DataSourceSpecification. |
DataSourceClass |
getDataSourceClassArray(int i)
Gets the DataSourceClass instance located at array index i in the
array of DataSourceClass instances contained in this DataSourceSpecification. |
DataSourceParameter[] |
getDataSourceParametersArray()
Gets an array of all DataSourceParameters elements. |
DataSourceParameter |
getDataSourceParametersArray(int i)
Gets the DataSourceParameters element at the specified index position. |
DataSourceParameterValue[] |
getDataSourceParameterValuesArray()
Gets an array of all DataSourceParameterValues elements. |
DataSourceParameterValue |
getDataSourceParameterValuesArray(int i)
Gets the DataSourceParameterValues element at the specified index position. |
java.lang.String |
getDescription()
Gets the description of this DataSourceSpecification. |
boolean |
getDuplicateRowSupported()
Returns true if the DataSource supports duplicate row. |
boolean |
getEditQueryAllowed()
Returns true, if the DataSource has rights for editing Query. |
boolean |
getExceptOperatorSupported()
Returns true if the DataSource object supports the use of the "Except" operator. |
Hierarchy[] |
getHierarchyArray()
Gets an array of Hierarchy instances in the DataSourceSpecification. |
Hierarchy |
getHierarchyArray(int i)
Gets the Hierarchy instance located at array index i in the
array of Hierarchy instances contained in this DataSourceSpecification. |
boolean |
getIsNullOperatorSupported()
Returns true if the DataSource object supports is null operator. |
int |
getMaxInListNumber()
Gets the maximum number of values an In-list operator can support. |
int |
getMaxRetrievalTime()
Gets the maximum amount of time (in milliseconds) to wait for retrieving data. |
int |
getMaxRowsRetrieved()
Gets the maximum number of rows that can be retrieved for the data source. |
boolean |
getMissingRowSupported()
Returns true, if the DataSource supports missing row. |
java.lang.String |
getName()
Gets the name of this DataSourceSpecification. |
boolean |
getNotIsNullOperatorSupported()
Returns true, if the DataSource object supports is not null operator. |
boolean |
getPercentageRankConditionSupported()
Returns true, if the DataSource supports Percentage Rank Condition. |
boolean |
getRankConditionSupported()
Returns true if the DataSource object supports condition ranking. |
Sampling |
getSampling()
Gets the Sampling element, which describes supported sampling modes of the DataSource. |
boolean |
getSortOnAnyObjectSupported()
Internal Use Only. |
boolean |
getSubQuerySupported()
Returns true if the DataSource object supports sub queries. |
java.lang.String |
getUID()
Gets the UID of this DataSourceSpecification. |
boolean |
getViewSQLSupported()
Returns true, if the DataSource supports ViewSQL. |
DataSourceClass |
insertNewDataSourceClass(int i)
Internal Use Only. |
DataSourceParameter |
insertNewDataSourceParameters(int i)
Internal Use Only. |
DataSourceParameterValue |
insertNewDataSourceParameterValues(int i)
Internal Use Only. |
Hierarchy |
insertNewHierarchy(int i)
Internal Use Only. |
boolean |
isNilDataSourceParameterValuesArray(int i)
Checks if the ith DataSourceParameterValues element is nil. |
void |
removeDataSourceClass(int i)
Internal Use Only. |
void |
removeDataSourceParameters(int i)
Internal Use Only. |
void |
removeDataSourceParameterValues(int i)
Internal Use Only. |
void |
removeHierarchy(int i)
Internal Use Only. |
void |
setAdvancedConditionSupported(boolean advancedConditionSupported)
Internal Use Only. |
void |
setBothOperatorSupported(boolean bothOperatorSupported)
Internal Use Only. |
void |
setCombinedQuerySupported(boolean combinedQuerySupported)
Internal Use Only. |
void |
setConditionObjectValueSupported(boolean conditionObjectValueSupported)
Internal Use Only. |
void |
setDataSourceClassArray(DataSourceClass[] dataSourceClassArray)
Internal Use Only. |
void |
setDataSourceClassArray(int i,
DataSourceClass dataSourceClass)
Internal Use Only. |
void |
setDataSourceParametersArray(DataSourceParameter[] dataSourceParametersArray)
Internal Use Only. |
void |
setDataSourceParametersArray(int i,
DataSourceParameter dataSourceParameters)
Internal Use Only. |
void |
setDataSourceParameterValuesArray(DataSourceParameterValue[] dataSourceParameterValuesArray)
Internal Use Only. |
void |
setDataSourceParameterValuesArray(int i,
DataSourceParameterValue dataSourceParameterValues)
Internal Use Only. |
void |
setDescription(java.lang.String description)
Internal Use Only. |
void |
setDuplicateRowSupported(boolean duplicateRowSupported)
Internal Use Only. |
void |
setEditQueryAllowed(boolean editQueryAllowed)
Internal Use Only. |
void |
setExceptOperatorSupported(boolean exceptOperatorSupported)
Internal Use Only. |
void |
setHierarchyArray(Hierarchy[] hierarchyArray)
Internal Use Only. |
void |
setHierarchyArray(int i,
Hierarchy hierarchy)
Internal Use Only. |
void |
setIsNullOperatorSupported(boolean isNullOperatorSupported)
Internal Use Only. |
void |
setMaxInListNumber(int maxInListNumber)
Internal Use Only. |
void |
setMaxRetrievalTime(int maxRetrievalTime)
Internal Use Only. |
void |
setMaxRowsRetrieved(int maxRowsRetrieved)
Internal Use Only. |
void |
setMissingRowSupported(boolean missingRowSupported)
Internal Use Only. |
void |
setName(java.lang.String name)
Internal Use Only. |
void |
setNilDataSourceParameterValuesArray(int i)
Internal Use Only. |
void |
setNotIsNullOperatorSupported(boolean notIsNullOperatorSupported)
Internal Use Only. |
void |
setPercentageRankConditionSupported(boolean percentageRankConditionSupported)
Internal Use Only. |
void |
setRankConditionSupported(boolean rankConditionSupported)
Internal Use Only. |
void |
setSampling(Sampling sampling)
Internal Use Only. |
void |
setSortOnAnyObjectSupported(boolean sortOnAnyObjectSupported)
Sets the SortOnAnyObjectSupported attribute. |
void |
setSubQuerySupported(boolean subQuerySupported)
Internal Use Only. |
void |
setUID(java.lang.String uid)
Internal Use Only. |
void |
setViewSQLSupported(boolean viewSQLSupported)
Internal Use Only. |
int |
sizeOfDataSourceClassArray()
Returns the number of DataSourceClass element. |
int |
sizeOfDataSourceParametersArray()
Returns the number of DataSourceParameters element. |
int |
sizeOfDataSourceParameterValuesArray()
Returns the number of DataSourceParameterValues element. |
int |
sizeOfHierarchyArray()
Returns the number of Hierarchy element. |
org.apache.xmlbeans.XmlBoolean |
xgetAdvancedConditionSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetBothOperatorSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetCombinedQuerySupported()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetConditionObjectValueSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlString |
xgetDescription()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetDuplicateRowSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetEditQueryAllowed()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetExceptOperatorSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetIsNullOperatorSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlInt |
xgetMaxInListNumber()
Internal Use Only. |
org.apache.xmlbeans.XmlInt |
xgetMaxRetrievalTime()
Internal Use Only. |
org.apache.xmlbeans.XmlInt |
xgetMaxRowsRetrieved()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetMissingRowSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlString |
xgetName()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetNotIsNullOperatorSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetPercentageRankConditionSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetRankConditionSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetSortOnAnyObjectSupported()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetSubQuerySupported()
Internal Use Only. |
org.apache.xmlbeans.XmlString |
xgetUID()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetViewSQLSupported()
Internal Use Only. |
void |
xsetAdvancedConditionSupported(org.apache.xmlbeans.XmlBoolean advancedConditionSupported)
Internal Use Only. |
void |
xsetBothOperatorSupported(org.apache.xmlbeans.XmlBoolean bothOperatorSupported)
Internal Use Only. |
void |
xsetCombinedQuerySupported(org.apache.xmlbeans.XmlBoolean combinedQuerySupported)
Internal Use Only. |
void |
xsetConditionObjectValueSupported(org.apache.xmlbeans.XmlBoolean conditionObjectValueSupported)
Internal Use Only. |
void |
xsetDescription(org.apache.xmlbeans.XmlString description)
Internal Use Only. |
void |
xsetDuplicateRowSupported(org.apache.xmlbeans.XmlBoolean duplicateRowSupported)
Internal Use Only. |
void |
xsetEditQueryAllowed(org.apache.xmlbeans.XmlBoolean editQueryAllowed)
Internal Use Only. |
void |
xsetExceptOperatorSupported(org.apache.xmlbeans.XmlBoolean exceptOperatorSupported)
Internal Use Only. |
void |
xsetIsNullOperatorSupported(org.apache.xmlbeans.XmlBoolean isNullOperatorSupported)
Internal Use Only. |
void |
xsetMaxInListNumber(org.apache.xmlbeans.XmlInt maxInListNumber)
Internal Use Only. |
void |
xsetMaxRetrievalTime(org.apache.xmlbeans.XmlInt maxRetrievalTime)
Internal Use Only. |
void |
xsetMaxRowsRetrieved(org.apache.xmlbeans.XmlInt maxRowsRetrieved)
Internal Use Only. |
void |
xsetMissingRowSupported(org.apache.xmlbeans.XmlBoolean missingRowSupported)
Internal Use Only. |
void |
xsetName(org.apache.xmlbeans.XmlString name)
Internal Use Only. |
void |
xsetNotIsNullOperatorSupported(org.apache.xmlbeans.XmlBoolean notIsNullOperatorSupported)
Internal Use Only. |
void |
xsetPercentageRankConditionSupported(org.apache.xmlbeans.XmlBoolean percentageRankConditionSupported)
Internal Use Only. |
void |
xsetRankConditionSupported(org.apache.xmlbeans.XmlBoolean rankConditionSupported)
Internal Use Only. |
void |
xsetSortOnAnyObjectSupported(org.apache.xmlbeans.XmlBoolean sortOnAnyObjectSupported)
Internal Use Only. |
void |
xsetSubQuerySupported(org.apache.xmlbeans.XmlBoolean subQuerySupported)
Internal Use Only. |
void |
xsetUID(org.apache.xmlbeans.XmlString uid)
Internal Use Only. |
void |
xsetViewSQLSupported(org.apache.xmlbeans.XmlBoolean viewSQLSupported)
Internal Use Only. |
| Field Detail |
|---|
static final org.apache.xmlbeans.SchemaType type
Internal Use Only.
| Method Detail |
|---|
DataSourceClass[] getDataSourceClassArray()
Gets an array of DataSourceClass instances in the DataSourceSpecification.
Each DataSourceClass instance contains zero or more DataSourceObject instances.
DataSourceClass instances in the DataSourceSpecificationDataSourceClass getDataSourceClassArray(int i)
Gets the DataSourceClass instance located at array index i in the
array of DataSourceClass instances contained in this DataSourceSpecification.
i - the index of the DataSourceClass instance in the array
DataSourceClass instance located at array index iint sizeOfDataSourceClassArray()
DataSourceClass elementvoid setDataSourceClassArray(DataSourceClass[] dataSourceClassArray)
Internal Use Only.
void setDataSourceClassArray(int i,
DataSourceClass dataSourceClass)
Internal Use Only.
DataSourceClass insertNewDataSourceClass(int i)
Internal Use Only.
DataSourceClass addNewDataSourceClass()
Internal Use Only.
void removeDataSourceClass(int i)
Internal Use Only.
Hierarchy[] getHierarchyArray()
Gets an array of Hierarchy instances in the DataSourceSpecification.
Each Hierarchy instance contains zero or more DataSourceObject instances.
Hierarchy instances in the DataSourceSpecification.Hierarchy getHierarchyArray(int i)
Gets the Hierarchy instance located at array index i in the
array of Hierarchy instances contained in this DataSourceSpecification.
i - the index of the Hierarchy instance in the array.
Hierarchy instance located at array index i.int sizeOfHierarchyArray()
Hierarchy element.void setHierarchyArray(Hierarchy[] hierarchyArray)
Internal Use Only.
void setHierarchyArray(int i,
Hierarchy hierarchy)
Internal Use Only.
Hierarchy insertNewHierarchy(int i)
Internal Use Only.
Hierarchy addNewHierarchy()
Internal Use Only.
void removeHierarchy(int i)
Internal Use Only.
java.lang.String getDescription()
Gets the description of this DataSourceSpecification.
DataSourceSpecification.org.apache.xmlbeans.XmlString xgetDescription()
Internal Use Only.
void setDescription(java.lang.String description)
Internal Use Only.
void xsetDescription(org.apache.xmlbeans.XmlString description)
Internal Use Only.
DataSourceParameter[] getDataSourceParametersArray()
DataSourceParameters.DataSourceParameter getDataSourceParametersArray(int i)
i - the index of the DataSourceParameters element.
DataSourceParameters instance.int sizeOfDataSourceParametersArray()
DataSourceParameters.void setDataSourceParametersArray(DataSourceParameter[] dataSourceParametersArray)
Internal Use Only.
void setDataSourceParametersArray(int i,
DataSourceParameter dataSourceParameters)
Internal Use Only.
DataSourceParameter insertNewDataSourceParameters(int i)
Internal Use Only.
DataSourceParameter addNewDataSourceParameters()
Internal Use Only.
void removeDataSourceParameters(int i)
Internal Use Only.
Sampling getSampling()
Sampling element, which describes supported sampling modes of the DataSource.
DataSource.void setSampling(Sampling sampling)
Internal Use Only.
Sampling addNewSampling()
Internal Use Only.
DataSourceParameterValue[] getDataSourceParameterValuesArray()
DataSourceParameterValuesDataSourceParameterValue getDataSourceParameterValuesArray(int i)
i - the index of the DataSourceParameterValue element
DataSourceParameterValue instanceboolean isNilDataSourceParameterValuesArray(int i)
i - the ith DataSourceParameterValues element
true, if the ith DataSourceParameterValues is nil, otherwise false.int sizeOfDataSourceParameterValuesArray()
void setDataSourceParameterValuesArray(DataSourceParameterValue[] dataSourceParameterValuesArray)
Internal Use Only.
void setDataSourceParameterValuesArray(int i,
DataSourceParameterValue dataSourceParameterValues)
Internal Use Only.
void setNilDataSourceParameterValuesArray(int i)
Internal Use Only.
DataSourceParameterValue insertNewDataSourceParameterValues(int i)
Internal Use Only.
DataSourceParameterValue addNewDataSourceParameterValues()
Internal Use Only.
void removeDataSourceParameterValues(int i)
Internal Use Only.
java.lang.String getUID()
Gets the UID of this DataSourceSpecification.
DataSourceSpecificationorg.apache.xmlbeans.XmlString xgetUID()
Internal Use Only.
void setUID(java.lang.String uid)
Internal Use Only.
void xsetUID(org.apache.xmlbeans.XmlString uid)
Internal Use Only.
java.lang.String getName()
Gets the name of this DataSourceSpecification.
DataSourceSpecificationorg.apache.xmlbeans.XmlString xgetName()
Internal Use Only.
void setName(java.lang.String name)
Internal Use Only.
void xsetName(org.apache.xmlbeans.XmlString name)
Internal Use Only.
int getMaxRowsRetrieved()
Gets the maximum number of rows that can be retrieved for the data source.
org.apache.xmlbeans.XmlInt xgetMaxRowsRetrieved()
Internal Use Only.
void setMaxRowsRetrieved(int maxRowsRetrieved)
Internal Use Only.
void xsetMaxRowsRetrieved(org.apache.xmlbeans.XmlInt maxRowsRetrieved)
Internal Use Only.
int getMaxRetrievalTime()
Gets the maximum amount of time (in milliseconds) to wait for retrieving data.
org.apache.xmlbeans.XmlInt xgetMaxRetrievalTime()
Internal Use Only.
void setMaxRetrievalTime(int maxRetrievalTime)
Internal Use Only.
void xsetMaxRetrievalTime(org.apache.xmlbeans.XmlInt maxRetrievalTime)
Internal Use Only.
int getMaxInListNumber()
Gets the maximum number of values an In-list operator can support. This is defined by the universe designer.
org.apache.xmlbeans.XmlInt xgetMaxInListNumber()
Internal Use Only.
void setMaxInListNumber(int maxInListNumber)
Internal Use Only.
void xsetMaxInListNumber(org.apache.xmlbeans.XmlInt maxInListNumber)
Internal Use Only.
boolean getRankConditionSupported()
Returns true if the DataSource object supports condition ranking.
true, if the DataSource object supports condition ranking, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetRankConditionSupported()
Internal Use Only.
void setRankConditionSupported(boolean rankConditionSupported)
Internal Use Only.
void xsetRankConditionSupported(org.apache.xmlbeans.XmlBoolean rankConditionSupported)
Internal Use Only.
boolean getSubQuerySupported()
Returns true if the DataSource object supports sub queries.
true, if the DataSource object supports sub queries, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetSubQuerySupported()
Internal Use Only.
void setSubQuerySupported(boolean subQuerySupported)
Internal Use Only.
void xsetSubQuerySupported(org.apache.xmlbeans.XmlBoolean subQuerySupported)
Internal Use Only.
boolean getCombinedQuerySupported()
Returns true if the DataSource object supports combined queries.
"true", if the DataSource object supports combined queries, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetCombinedQuerySupported()
Internal Use Only.
void setCombinedQuerySupported(boolean combinedQuerySupported)
Internal Use Only.
void xsetCombinedQuerySupported(org.apache.xmlbeans.XmlBoolean combinedQuerySupported)
Internal Use Only.
boolean getBothOperatorSupported()
Returns true if the DataSource object supports the use of the "Both" operator.
true, if the DataSource object supports the use of the "Both" operator, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetBothOperatorSupported()
Internal Use Only.
void setBothOperatorSupported(boolean bothOperatorSupported)
Internal Use Only.
void xsetBothOperatorSupported(org.apache.xmlbeans.XmlBoolean bothOperatorSupported)
Internal Use Only.
boolean getExceptOperatorSupported()
Returns true if the DataSource object supports the use of the "Except" operator.
true, if the DataSource object supports the use of the "Except" operator, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetExceptOperatorSupported()
Internal Use Only.
void setExceptOperatorSupported(boolean exceptOperatorSupported)
Internal Use Only.
void xsetExceptOperatorSupported(org.apache.xmlbeans.XmlBoolean exceptOperatorSupported)
Internal Use Only.
boolean getAdvancedConditionSupported()
Returns true if the DataSource object supports Advanced Condition.
true if the DataSource object supports Advanced Condition, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetAdvancedConditionSupported()
Internal Use Only.
void setAdvancedConditionSupported(boolean advancedConditionSupported)
Internal Use Only.
void xsetAdvancedConditionSupported(org.apache.xmlbeans.XmlBoolean advancedConditionSupported)
Internal Use Only.
boolean getConditionObjectValueSupported()
Returns true if the DataSource supports Object Value Condition.
true if the DataSource supports Object Value Condition, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetConditionObjectValueSupported()
Internal Use Only.
void setConditionObjectValueSupported(boolean conditionObjectValueSupported)
Internal Use Only.
void xsetConditionObjectValueSupported(org.apache.xmlbeans.XmlBoolean conditionObjectValueSupported)
Internal Use Only.
boolean getDuplicateRowSupported()
Returns true if the DataSource supports duplicate row.
true if the DataSource supports duplicate row, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetDuplicateRowSupported()
Internal Use Only.
void setDuplicateRowSupported(boolean duplicateRowSupported)
Internal Use Only.
void xsetDuplicateRowSupported(org.apache.xmlbeans.XmlBoolean duplicateRowSupported)
Internal Use Only.
boolean getIsNullOperatorSupported()
Returns true if the DataSource object supports is null operator.
true if the DataSource supports is null operator, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetIsNullOperatorSupported()
Internal Use Only.
void setIsNullOperatorSupported(boolean isNullOperatorSupported)
Internal Use Only.
void xsetIsNullOperatorSupported(org.apache.xmlbeans.XmlBoolean isNullOperatorSupported)
Internal Use Only.
boolean getNotIsNullOperatorSupported()
Returns true, if the DataSource object supports is not null operator.
true, if the DataSource supports is not null operator, otherwise false.org.apache.xmlbeans.XmlBoolean xgetNotIsNullOperatorSupported()
Internal Use Only.
void setNotIsNullOperatorSupported(boolean notIsNullOperatorSupported)
Internal Use Only.
void xsetNotIsNullOperatorSupported(org.apache.xmlbeans.XmlBoolean notIsNullOperatorSupported)
Internal Use Only.
boolean getViewSQLSupported()
Returns true, if the DataSource supports ViewSQL.
true if the DataSource supports ViewSQL, otherwise false.org.apache.xmlbeans.XmlBoolean xgetViewSQLSupported()
Internal Use Only.
void setViewSQLSupported(boolean viewSQLSupported)
Internal Use Only.
void xsetViewSQLSupported(org.apache.xmlbeans.XmlBoolean viewSQLSupported)
Internal Use Only.
boolean getMissingRowSupported()
Returns true, if the DataSource supports missing row.
true, if the DataSource supports missing row, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetMissingRowSupported()
Internal Use Only.
void setMissingRowSupported(boolean missingRowSupported)
Internal Use Only.
void xsetMissingRowSupported(org.apache.xmlbeans.XmlBoolean missingRowSupported)
Internal Use Only.
boolean getEditQueryAllowed()
Returns true, if the DataSource has rights for editing Query.
true, if the DataSource has rights for editing Query, otherwise false.org.apache.xmlbeans.XmlBoolean xgetEditQueryAllowed()
Internal Use Only.
void setEditQueryAllowed(boolean editQueryAllowed)
Internal Use Only.
void xsetEditQueryAllowed(org.apache.xmlbeans.XmlBoolean editQueryAllowed)
Internal Use Only.
boolean getPercentageRankConditionSupported()
Returns true, if the DataSource supports Percentage Rank Condition.
true, if the DataSource supports Percentage Rank Condition, otherwise false.org.apache.xmlbeans.XmlBoolean xgetPercentageRankConditionSupported()
Internal Use Only.
void setPercentageRankConditionSupported(boolean percentageRankConditionSupported)
Internal Use Only.
void xsetPercentageRankConditionSupported(org.apache.xmlbeans.XmlBoolean percentageRankConditionSupported)
Internal Use Only.
boolean getSortOnAnyObjectSupported()
Internal Use Only.
org.apache.xmlbeans.XmlBoolean xgetSortOnAnyObjectSupported()
Internal Use Only.
void setSortOnAnyObjectSupported(boolean sortOnAnyObjectSupported)
void xsetSortOnAnyObjectSupported(org.apache.xmlbeans.XmlBoolean sortOnAnyObjectSupported)
Internal Use Only.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||