rowsetdefinition.html
来自「基于mondrian 开源框架进行OLAP多维分析」· HTML 代码 · 共 1,582 行 · 第 1/5 页
HTML
1,582 行
PROPERTY_ATTRIBUTE_HIERARCHY_NAME PROPERTY_CARDINALITY MIME_TYPE PROPERTY_IS_VISIBLE<P><DL></DL></DL><HR><A NAME="MDSCHEMA_SETS"><!-- --></A><H3>MDSCHEMA_SETS</H3><PRE>public static final <A HREF="../../mondrian/xmla/RowsetDefinition.html" title="enum in mondrian.xmla">RowsetDefinition</A> <B>MDSCHEMA_SETS</B></PRE><DL><DD>http://msdn2.microsoft.com/en-us/library/ms126290(SQL.90).aspx http://msdn.microsoft.com/library/default.asp?url=/library/en-us/oledb/htm/olapproperties_rowset.asp restrictions CATALOG_NAME Optional. SCHEMA_NAME Optional. CUBE_NAME Optional. SET_NAME Optional. SCOPE Optional. HIERARCHY_UNIQUE_NAME Optional. CUBE_SOURCE Optional. Note: Only one hierarchy can be included, and only those named sets whose hierarchies exactly match the restriction are returned. Not supported EXPRESSION DIMENSIONS SET_DISPLAY_FOLDER<P><DL></DL></DL><!-- ============ FIELD DETAIL =========== --><A NAME="field_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"><B>Field Detail</B></FONT></TH></TR></TABLE><A NAME="columnDefinitions"><!-- --></A><H3>columnDefinitions</H3><PRE>final transient <A HREF="../../mondrian/xmla/RowsetDefinition.Column.html" title="class in mondrian.xmla">RowsetDefinition.Column</A>[] <B>columnDefinitions</B></PRE><DL><DL></DL></DL><HR><A NAME="sortColumnDefinitions"><!-- --></A><H3>sortColumnDefinitions</H3><PRE>final transient <A HREF="../../mondrian/xmla/RowsetDefinition.Column.html" title="class in mondrian.xmla">RowsetDefinition.Column</A>[] <B>sortColumnDefinitions</B></PRE><DL><DL></DL></DL><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"><B>Method Detail</B></FONT></TH></TR></TABLE><A NAME="values()"><!-- --></A><H3>values</H3><PRE>public static final <A HREF="../../mondrian/xmla/RowsetDefinition.html" title="enum in mondrian.xmla">RowsetDefinition</A>[] <B>values</B>()</PRE><DL><DD>Returns an array containing the constants of this enum type, inthe order they're declared. This method may be used to iterateover the constants as follows:<pre>for(RowsetDefinition c : RowsetDefinition.values()) System.out.println(c);</pre><P><DD><DL><DT><B>Returns:</B><DD>an array containing the constants of this enum type, inthe order they're declared</DL></DD></DL><HR><A NAME="valueOf(java.lang.String)"><!-- --></A><H3>valueOf</H3><PRE>public static <A HREF="../../mondrian/xmla/RowsetDefinition.html" title="enum in mondrian.xmla">RowsetDefinition</A> <B>valueOf</B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name)</PRE><DL><DD>Returns the enum constant of this type with the specified name.The string must match <I>exactly</I> an identifier used to declare anenum constant in this type. (Extraneous whitespace characters are not permitted.)<P><DD><DL><DT><B>Parameters:</B><DD><CODE>name</CODE> - the name of the enum constant to be returned.<DT><B>Returns:</B><DD>the enum constant with the specified name<DT><B>Throws:</B><DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/lang/IllegalArgumentException.html" title="class or interface in java.lang">IllegalArgumentException</A></CODE> - if this enum type has no constantwith the specified name</DL></DD></DL><HR><A NAME="getRowset(mondrian.xmla.XmlaRequest, mondrian.xmla.XmlaHandler)"><!-- --></A><H3>getRowset</H3><PRE>public abstract <A HREF="../../mondrian/xmla/Rowset.html" title="class in mondrian.xmla">Rowset</A> <B>getRowset</B>(<A HREF="../../mondrian/xmla/XmlaRequest.html" title="interface in mondrian.xmla">XmlaRequest</A> request, <A HREF="../../mondrian/xmla/XmlaHandler.html" title="class in mondrian.xmla">XmlaHandler</A> handler)</PRE><DL><DD><DL></DL></DD></DL><HR><A NAME="lookupColumn(java.lang.String)"><!-- --></A><H3>lookupColumn</H3><PRE>public <A HREF="../../mondrian/xmla/RowsetDefinition.Column.html" title="class in mondrian.xmla">RowsetDefinition.Column</A> <B>lookupColumn</B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name)</PRE><DL><DD><DL></DL></DD></DL><HR><A NAME="getComparator()"><!-- --></A><H3>getComparator</H3><PRE><A HREF="http://java.sun.com/javase/6/docs/api/java/util/Comparator.html" title="class or interface in java.util">Comparator</A><<A HREF="../../mondrian/xmla/Rowset.Row.html" title="class in mondrian.xmla">Rowset.Row</A>> <B>getComparator</B>()</PRE><DL><DD>Returns a comparator with which to sort rows of this rowset definition. The sort order is defined by the <A HREF="../../mondrian/xmla/RowsetDefinition.html#sortColumnDefinitions"><CODE>sortColumnDefinitions</CODE></A> field. If the rowset is not sorted, returns null.<P><DD><DL></DL></DD></DL><HR><A NAME="writeRowsetXmlSchema(mondrian.xmla.SaxWriter)"><!-- --></A><H3>writeRowsetXmlSchema</H3><PRE>void <B>writeRowsetXmlSchema</B>(<A HREF="../../mondrian/xmla/SaxWriter.html" title="interface in mondrian.xmla">SaxWriter</A> writer)</PRE><DL><DD>Generates an XML schema description to the writer. This is broken into top, Row definition and bottom so that on a case by case basis a RowsetDefinition can redefine the Row definition output. The default assumes a flat set of elements, but for example, SchemaRowsets has a element with child elements.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>writer</CODE> - SAX writer<DT><B>See Also:</B><DD><A HREF="../../mondrian/xmla/XmlaHandler.html#writeDatasetXmlSchema(mondrian.xmla.SaxWriter, mondrian.xmla.XmlaHandler.SetType)"><CODE>XmlaHandler.writeDatasetXmlSchema(SaxWriter, mondrian.xmla.XmlaHandler.SetType)</CODE></A></DL></DD></DL><HR><A NAME="writeRowsetXmlSchemaTop(mondrian.xmla.SaxWriter)"><!-- --></A><H3>writeRowsetXmlSchemaTop</H3><PRE>protected void <B>writeRowsetXmlSchemaTop</B>(<A HREF="../../mondrian/xmla/SaxWriter.html" title="interface in mondrian.xmla">SaxWriter</A> writer)</PRE><DL><DD><DL></DL></DD></DL><HR><A NAME="writeRowsetXmlSchemaRowDef(mondrian.xmla.SaxWriter)"><!-- --></A><H3>writeRowsetXmlSchemaRowDef</H3><PRE>protected void <B>writeRowsetXmlSchemaRowDef</B>(<A HREF="../../mondrian/xmla/SaxWriter.html" title="interface in mondrian.xmla">SaxWriter</A> writer)</PRE><DL><DD><DL></DL></DD></DL><HR><A NAME="writeRowsetXmlSchemaBottom(mondrian.xmla.SaxWriter)"><!-- --></A><H3>writeRowsetXmlSchemaBottom</H3><PRE>protected void <B>writeRowsetXmlSchemaBottom</B>(<A HREF="../../mondrian/xmla/SaxWriter.html" title="interface in mondrian.xmla">SaxWriter</A> writer)</PRE><DL><DD><DL></DL></DD></DL><HR><A NAME="getDescription()"><!-- --></A><H3>getDescription</H3><PRE>public <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>getDescription</B>()</PRE><DL><DD><DL></DL></DD></DL><HR><A NAME="getDimensionType(mondrian.olap.Dimension)"><!-- --></A><H3>getDimensionType</H3><PRE>static int <B>getDimensionType</B>(<A HREF="../../mondrian/olap/Dimension.html" title="interface in mondrian.olap">Dimension</A> dim)</PRE><DL><DD><DL></DL></DD></DL><HR><A NAME="serialize(java.lang.StringBuilder, java.util.Collection)"><!-- --></A><H3>serialize</H3><PRE>static void <B>serialize</B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/StringBuilder.html" title="class or interface in java.lang">StringBuilder</A> buf, <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html" title="class or interface in java.util">Collection</A><<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>> strings)</PRE><DL><DD><DL></DL></DD></DL><HR><A NAME="sortedCubes(mondrian.olap.Schema)"><!-- --></A><H3>sortedCubes</H3><PRE>static <A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html" title="class or interface in java.util">List</A><<A HREF="../../mondrian/olap/Cube.html" title="interface in mondrian.olap">Cube</A>> <B>sortedCubes</B>(<A HREF="../../mondrian/olap/Schema.html" title="interface in mondrian.olap">Schema</A> schema)</PRE><DL><DD><DL></DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ======= START OF BOTTOM NAVBAR ====== --><A NAME="navbar_bottom"><!-- --></A><A HREF="#skip-navbar_bottom" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><a href="http://sourceforge.net/projects/mondrian"><img src="http://sourceforge.net/sflogo.php?group_id=35302&type=1" width="88" height="31" border="0" alt="SourceForge.net_Logo"></a></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../mondrian/xmla/Rowset.XmlElement.html" title="class in mondrian.xmla"><B>PREV CLASS</B></A> <A HREF="../../mondrian/xmla/RowsetDefinition.Column.html" title="class in mondrian.xmla"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../index.html?mondrian/xmla/RowsetDefinition.html" target="_top"><B>FRAMES</B></A> <A HREF="RowsetDefinition.html" target="_top"><B>NO FRAMES</B></A> <SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--></SCRIPT><NOSCRIPT> <A HREF="../../allclasses-noframe.html"><B>All Classes</B></A></NOSCRIPT></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#enum_constant_summary">ENUM CONSTANTS</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: <A HREF="#enum_constant_detail">ENUM CONSTANTS</A> | <A HREF="#field_detail">FIELD</A> | <A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= --><HR></BODY></HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?