This file is indexed.

/usr/share/doc/libolap4j-java/api/org/olap4j/query/QueryDimension.html is in libolap4j-java-doc 1.0.1.500-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_25) on Sat Aug 17 11:43:53 UTC 2013 -->
<title>QueryDimension (olap4j, version 1.0.1.500)</title>
<meta name="date" content="2013-08-17">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="QueryDimension (olap4j, version 1.0.1.500)";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/olap4j/query/QueryAxis.html" title="class in org.olap4j.query"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/olap4j/query/QueryDimension.HierarchizeMode.html" title="enum in org.olap4j.query"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/olap4j/query/QueryDimension.html" target="_top">Frames</a></li>
<li><a href="QueryDimension.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.olap4j.query</div>
<h2 title="Class QueryDimension" class="title">Class QueryDimension</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>org.olap4j.query.QueryDimension</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.42">QueryDimension</a>
extends <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
<div class="block">Usage of a dimension for an OLAP query.

 <p>It references an <a href="../../../org/olap4j/metadata/Dimension.html" title="interface in org.olap4j.metadata"><code>Dimension</code></a> and allows the
 query creator to manage the member selections for the dimension.
 The state of a QueryDimension does not affect the
 Dimension object in any way so a single Dimension object
 can be referenced by many QueryDimension objects.</div>
<dl><dt><span class="strong">Since:</span></dt>
  <dd>May 29, 2007</dd>
<dt><span class="strong">Version:</span></dt>
  <dd>$Id: QueryDimension.java 482 2012-01-05 23:27:27Z jhyde $</dd>
<dt><span class="strong">Author:</span></dt>
  <dd>jdixon, jhyde, Luc Boudreau</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!--   -->
</a>
<h3>Nested Class Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.HierarchizeMode.html" title="enum in org.olap4j.query">QueryDimension.HierarchizeMode</a></strong></code>
<div class="block">Defines in which way the hierarchize operation
 should be performed.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#QueryDimension(org.olap4j.query.Query, org.olap4j.metadata.Dimension)">QueryDimension</a></strong>(<a href="../../../org/olap4j/query/Query.html" title="class in org.olap4j.query">Query</a>&nbsp;query,
                            <a href="../../../org/olap4j/metadata/Dimension.html" title="interface in org.olap4j.metadata">Dimension</a>&nbsp;dimension)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#addQueryNodeListener(org.olap4j.query.QueryNodeListener)">addQueryNodeListener</a></strong>(<a href="../../../org/olap4j/query/QueryNodeListener.html" title="interface in org.olap4j.query">QueryNodeListener</a>&nbsp;l)</code>
<div class="block">Registers a new listener for a QueryNode.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#clearExclusions()">clearExclusions</a></strong>()</code>
<div class="block">Clears the current member inclusions from this query dimension.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#clearHierarchizeMode()">clearHierarchizeMode</a></strong>()</code>
<div class="block">Tells the QueryDimension not to hierarchize its included
 selections.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#clearInclusions()">clearInclusions</a></strong>()</code>
<div class="block">Clears the current member inclusions from this query dimension.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#clearSort()">clearSort</a></strong>()</code>
<div class="block">Clears the current sorting settings.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#createSelection(org.olap4j.metadata.Level)">createSelection</a></strong>(<a href="../../../org/olap4j/metadata/Level.html" title="interface in org.olap4j.metadata">Level</a>&nbsp;level)</code>
<div class="block">Selects level and includes all members in the query.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#createSelection(java.util.List)">createSelection</a></strong>(<a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#createSelection(org.olap4j.metadata.Member)">createSelection</a></strong>(<a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#createSelection(org.olap4j.query.Selection.Operator, java.util.List)">createSelection</a></strong>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
                              <a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#createSelection(org.olap4j.query.Selection.Operator, org.olap4j.metadata.Member)">createSelection</a></strong>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
                              <a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</code>
<div class="block">Selects members and includes them in the query.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#exclude(org.olap4j.metadata.Level)">exclude</a></strong>(<a href="../../../org/olap4j/metadata/Level.html" title="interface in org.olap4j.metadata">Level</a>&nbsp;level)</code>
<div class="block">Selects level members and excludes them from the query.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#exclude(java.util.List)">exclude</a></strong>(<a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)</code>
<div class="block">Selects members and excludes them from the query.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#exclude(org.olap4j.metadata.Member)">exclude</a></strong>(<a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</code>
<div class="block">Selects members and excludes them from the query.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#exclude(org.olap4j.query.Selection.Operator, java.util.List)">exclude</a></strong>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
              <a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)</code>
<div class="block">Selects members and excludes them from the query.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#exclude(org.olap4j.query.Selection.Operator, org.olap4j.metadata.Member)">exclude</a></strong>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
              <a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</code>
<div class="block">Selects members and excludes them from the query.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/QueryAxis.html" title="class in org.olap4j.query">QueryAxis</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#getAxis()">getAxis</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/olap4j/metadata/Dimension.html" title="interface in org.olap4j.metadata">Dimension</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#getDimension()">getDimension</a></strong>()</code>
<div class="block">Returns the underlying dimension object onto which
 this query dimension is based.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#getExclusions()">getExclusions</a></strong>()</code>
<div class="block">Returns a list of the exclusions within this dimension.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/QueryDimension.HierarchizeMode.html" title="enum in org.olap4j.query">QueryDimension.HierarchizeMode</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#getHierarchizeMode()">getHierarchizeMode</a></strong>()</code>
<div class="block">Returns the current mode of hierarchization, or null
 if no hierarchization is currently performed.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#getInclusions()">getInclusions</a></strong>()</code>
<div class="block">Returns a list of the inclusions within this dimension.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#getName()">getName</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Query.html" title="class in org.olap4j.query">Query</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#getQuery()">getQuery</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/SortOrder.html" title="enum in org.olap4j.query">SortOrder</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#getSortOrder()">getSortOrder</a></strong>()</code>
<div class="block">Returns the current order in which the
 dimension members are sorted.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#include(org.olap4j.metadata.Level)">include</a></strong>(<a href="../../../org/olap4j/metadata/Level.html" title="interface in org.olap4j.metadata">Level</a>&nbsp;level)</code>
<div class="block">Selects a level and includes it in the query.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#include(java.util.List)">include</a></strong>(<a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)</code>
<div class="block">Selects members and includes them in the query.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#include(org.olap4j.metadata.Member)">include</a></strong>(<a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</code>
<div class="block">Selects members and includes them in the query.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#include(org.olap4j.query.Selection.Operator, java.util.List)">include</a></strong>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
              <a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)</code>
<div class="block">Selects members and includes them in the query.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#include(org.olap4j.query.Selection.Operator, org.olap4j.metadata.Member)">include</a></strong>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
              <a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</code>
<div class="block">Selects members and includes them in the query.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#isHierarchyConsistent()">isHierarchyConsistent</a></strong>()</code>
<div class="block">Tells the QueryDimension not to keep a consistent hierarchy</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#removeQueryNodeListener(org.olap4j.query.QueryNodeListener)">removeQueryNodeListener</a></strong>(<a href="../../../org/olap4j/query/QueryNodeListener.html" title="interface in org.olap4j.query">QueryNodeListener</a>&nbsp;l)</code>
<div class="block">De-registers a new listener for a QueryNode.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#resolve(org.olap4j.query.Selection)">resolve</a></strong>(<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;selection)</code>
<div class="block">Resolves a selection of members into an actual list
 of the root member and it's relatives selected by the Selection object.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#setAxis(org.olap4j.query.QueryAxis)">setAxis</a></strong>(<a href="../../../org/olap4j/query/QueryAxis.html" title="class in org.olap4j.query">QueryAxis</a>&nbsp;axis)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#setDimension(org.olap4j.metadata.Dimension)">setDimension</a></strong>(<a href="../../../org/olap4j/metadata/Dimension.html" title="interface in org.olap4j.metadata">Dimension</a>&nbsp;dimension)</code>
<div class="block">Forces a change onto which dimension is the current
 base of this QueryDimension object.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#setHierarchizeMode(org.olap4j.query.QueryDimension.HierarchizeMode)">setHierarchizeMode</a></strong>(<a href="../../../org/olap4j/query/QueryDimension.HierarchizeMode.html" title="enum in org.olap4j.query">QueryDimension.HierarchizeMode</a>&nbsp;hierarchizeMode)</code>
<div class="block">Triggers the hierarchization of the included members within this
 QueryDimension.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#setHierarchyConsistent(boolean)">setHierarchyConsistent</a></strong>(boolean&nbsp;consistent)</code>
<div class="block">Tells the QueryDimension not to keep a consistent hierarchy
 within the inclusions when the mdx is generated.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/olap4j/query/QueryDimension.html#sort(org.olap4j.query.SortOrder)">sort</a></strong>(<a href="../../../org/olap4j/query/SortOrder.html" title="enum in org.olap4j.query">SortOrder</a>&nbsp;order)</code>
<div class="block">Sorts the dimension members by name in the
 order supplied as a parameter.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="/usr/share/doc/default-jdk-doc/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="QueryDimension(org.olap4j.query.Query, org.olap4j.metadata.Dimension)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>QueryDimension</h4>
<pre>public&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.52">QueryDimension</a>(<a href="../../../org/olap4j/query/Query.html" title="class in org.olap4j.query">Query</a>&nbsp;query,
              <a href="../../../org/olap4j/metadata/Dimension.html" title="interface in org.olap4j.metadata">Dimension</a>&nbsp;dimension)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="getQuery()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getQuery</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Query.html" title="class in org.olap4j.query">Query</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.58">getQuery</a>()</pre>
</li>
</ul>
<a name="setAxis(org.olap4j.query.QueryAxis)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setAxis</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.62">setAxis</a>(<a href="../../../org/olap4j/query/QueryAxis.html" title="class in org.olap4j.query">QueryAxis</a>&nbsp;axis)</pre>
</li>
</ul>
<a name="getAxis()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAxis</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/QueryAxis.html" title="class in org.olap4j.query">QueryAxis</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.66">getAxis</a>()</pre>
</li>
</ul>
<a name="getName()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getName</h4>
<pre>public&nbsp;<a href="/usr/share/doc/default-jdk-doc/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.70">getName</a>()</pre>
</li>
</ul>
<a name="include(java.util.List)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>include</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.84">include</a>(<a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)
                  throws <a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></pre>
<div class="block">Selects members and includes them in the query.

 <p>This method selects and includes a single member with the
 <a href="../../../org/olap4j/query/Selection.Operator.html#MEMBER"><code>Selection.Operator.MEMBER</code></a> operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>nameParts</code> - Name of the member to select and include.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></code> - If no member corresponding to the supplied
 name parts could be resolved in the cube.</dd></dl>
</li>
</ul>
<a name="createSelection(java.util.List)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createSelection</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.91">createSelection</a>(<a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)
                          throws <a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></code></dd></dl>
</li>
</ul>
<a name="include(org.olap4j.query.Selection.Operator, java.util.List)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>include</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.111">include</a>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
                <a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)
                  throws <a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></pre>
<div class="block">Selects members and includes them in the query.

 <p>This method selects and includes a member along with its
 relatives, depending on the supplied <a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query"><code>Selection.Operator</code></a>
 operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>operator</code> - Selection operator that defines what relatives of the
 supplied member name to include along.</dd><dd><code>nameParts</code> - Name of the root member to select and include.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></code> - If no member corresponding to the supplied
 name parts could be resolved in the cube.</dd></dl>
</li>
</ul>
<a name="createSelection(org.olap4j.query.Selection.Operator, java.util.List)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createSelection</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.125">createSelection</a>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
                        <a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)
                          throws <a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></code></dd></dl>
</li>
</ul>
<a name="include(org.olap4j.metadata.Member)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>include</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.145">include</a>(<a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</pre>
<div class="block">Selects members and includes them in the query.
 <p>This method selects and includes a single member with the
 <a href="../../../org/olap4j/query/Selection.Operator.html#MEMBER"><code>Selection.Operator.MEMBER</code></a> selection operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>member</code> - The member to select and include in the query.</dd></dl>
</li>
</ul>
<a name="createSelection(org.olap4j.metadata.Member)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createSelection</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.149">createSelection</a>(<a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</pre>
</li>
</ul>
<a name="include(org.olap4j.metadata.Level)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>include</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.159">include</a>(<a href="../../../org/olap4j/metadata/Level.html" title="interface in org.olap4j.metadata">Level</a>&nbsp;level)</pre>
<div class="block">Selects a level and includes it in the query.
 <p>This method selects and includes a all members of the given
 query using the <a href="../../../org/olap4j/query/Selection.Operator.html#MEMBERS"><code>Selection.Operator.MEMBERS</code></a> selection operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - The level to select and include in the query.</dd></dl>
</li>
</ul>
<a name="createSelection(org.olap4j.query.Selection.Operator, org.olap4j.metadata.Member)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createSelection</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.177">createSelection</a>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
                        <a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</pre>
<div class="block">Selects members and includes them in the query.
 <p>This method selects and includes a member along with it's
 relatives, depending on the supplied <a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query"><code>Selection.Operator</code></a>
 operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>operator</code> - Selection operator that defines what relatives of the
 supplied member name to include along.</dd><dd><code>member</code> - Root member to select and include.</dd></dl>
</li>
</ul>
<a name="createSelection(org.olap4j.metadata.Level)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createSelection</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.196">createSelection</a>(<a href="../../../org/olap4j/metadata/Level.html" title="interface in org.olap4j.metadata">Level</a>&nbsp;level)</pre>
<div class="block">Selects level and includes all members in the query.
 <p>This method selects and includes all members of a
 given Level, using the MEMBERS operator <a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query"><code>Selection.Operator</code></a></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - Root level to select and include.</dd></dl>
</li>
</ul>
<a name="include(org.olap4j.query.Selection.Operator, org.olap4j.metadata.Member)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>include</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.215">include</a>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
                <a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</pre>
<div class="block">Selects members and includes them in the query.
 <p>This method selects and includes a member along with it's
 relatives, depending on the supplied <a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query"><code>Selection.Operator</code></a>
 operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>operator</code> - Selection operator that defines what relatives of the
 supplied member name to include along.</dd><dd><code>member</code> - Root member to select and include.</dd></dl>
</li>
</ul>
<a name="clearInclusions()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clearInclusions</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.243">clearInclusions</a>()</pre>
<div class="block">Clears the current member inclusions from this query dimension.</div>
</li>
</ul>
<a name="exclude(java.util.List)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>exclude</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.265">exclude</a>(<a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)
             throws <a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></pre>
<div class="block">Selects members and excludes them from the query.

 <p>This method selects and excludes a single member with the
 <a href="../../../org/olap4j/query/Selection.Operator.html#MEMBER"><code>Selection.Operator.MEMBER</code></a> operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>nameParts</code> - Name of the member to select and exclude.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></code> - If no member corresponding to the supplied
 name parts could be resolved in the cube.</dd></dl>
</li>
</ul>
<a name="exclude(org.olap4j.query.Selection.Operator, java.util.List)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>exclude</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.285">exclude</a>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
           <a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/mdx/IdentifierSegment.html" title="interface in org.olap4j.mdx">IdentifierSegment</a>&gt;&nbsp;nameParts)
             throws <a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></pre>
<div class="block">Selects members and excludes them from the query.

 <p>This method selects and excludes a member along with its
 relatives, depending on the supplied <a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query"><code>Selection.Operator</code></a>
 operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>operator</code> - Selection operator that defines what relatives of the
 supplied member name to exclude along.</dd><dd><code>nameParts</code> - Name of the root member to select and exclude.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></code> - If no member corresponding to the supplied
 name parts could be resolved in the cube.</dd></dl>
</li>
</ul>
<a name="exclude(org.olap4j.metadata.Level)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>exclude</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.305">exclude</a>(<a href="../../../org/olap4j/metadata/Level.html" title="interface in org.olap4j.metadata">Level</a>&nbsp;level)</pre>
<div class="block">Selects level members and excludes them from the query.
 <p>This method selects and excludes members of a level with the
 <a href="../../../org/olap4j/query/Selection.Operator.html#MEMBERS"><code>Selection.Operator.MEMBERS</code></a> selection operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - The level to select and exclude from the query.</dd></dl>
</li>
</ul>
<a name="exclude(org.olap4j.metadata.Member)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>exclude</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.319">exclude</a>(<a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</pre>
<div class="block">Selects members and excludes them from the query.
 <p>This method selects and excludes a single member with the
 <a href="../../../org/olap4j/query/Selection.Operator.html#MEMBER"><code>Selection.Operator.MEMBER</code></a> selection operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>member</code> - The member to select and exclude from the query.</dd></dl>
</li>
</ul>
<a name="exclude(org.olap4j.query.Selection.Operator, org.olap4j.metadata.Member)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>exclude</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.332">exclude</a>(<a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query">Selection.Operator</a>&nbsp;operator,
           <a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&nbsp;member)</pre>
<div class="block">Selects members and excludes them from the query.
 <p>This method selects and excludes a member along with it's
 relatives, depending on the supplied <a href="../../../org/olap4j/query/Selection.Operator.html" title="enum in org.olap4j.query"><code>Selection.Operator</code></a>
 operator.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>operator</code> - Selection operator that defines what relatives of the
 supplied member name to exclude along.</dd><dd><code>member</code> - Root member to select and exclude.</dd></dl>
</li>
</ul>
<a name="clearExclusions()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clearExclusions</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.358">clearExclusions</a>()</pre>
<div class="block">Clears the current member inclusions from this query dimension.</div>
</li>
</ul>
<a name="resolve(org.olap4j.query.Selection)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>resolve</h4>
<pre>public&nbsp;<a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/metadata/Member.html" title="interface in org.olap4j.metadata">Member</a>&gt;&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.378">resolve</a>(<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&nbsp;selection)
                     throws <a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></pre>
<div class="block">Resolves a selection of members into an actual list
 of the root member and it's relatives selected by the Selection object.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>selection</code> - The selection of members to resolve.</dd>
<dt><span class="strong">Returns:</span></dt><dd>A list of the actual members selected by the selection object.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/olap4j/OlapException.html" title="class in org.olap4j">OlapException</a></code> - If resolving the selections triggers an exception
 while looking up members in the underlying cube.</dd></dl>
</li>
</ul>
<a name="getInclusions()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInclusions</h4>
<pre>public&nbsp;<a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&gt;&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.427">getInclusions</a>()</pre>
<div class="block">Returns a list of the inclusions within this dimension.

 <p>Be aware that modifications to this list might
 have unpredictable consequences.</p></div>
<dl><dt><span class="strong">Returns:</span></dt><dd>list of inclusions</dd></dl>
</li>
</ul>
<a name="getExclusions()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExclusions</h4>
<pre>public&nbsp;<a href="/usr/share/doc/default-jdk-doc/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../org/olap4j/query/Selection.html" title="interface in org.olap4j.query">Selection</a>&gt;&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.439">getExclusions</a>()</pre>
<div class="block">Returns a list of the exclusions within this dimension.

 <p>Be aware that modifications to this list might
 have unpredictable consequences.</p></div>
<dl><dt><span class="strong">Returns:</span></dt><dd>list of exclusions</dd></dl>
</li>
</ul>
<a name="getDimension()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDimension</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/metadata/Dimension.html" title="interface in org.olap4j.metadata">Dimension</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.450">getDimension</a>()</pre>
<div class="block">Returns the underlying dimension object onto which
 this query dimension is based.
 <p>Returns a mutable object so operations on it have
 unpredictable consequences.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The underlying dimension representation.</dd></dl>
</li>
</ul>
<a name="setDimension(org.olap4j.metadata.Dimension)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDimension</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.462">setDimension</a>(<a href="../../../org/olap4j/metadata/Dimension.html" title="interface in org.olap4j.metadata">Dimension</a>&nbsp;dimension)</pre>
<div class="block">Forces a change onto which dimension is the current
 base of this QueryDimension object.
 <p>Forcing a change in the duimension assignment has
 unpredictable consequences.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>dimension</code> - The new dimension to assign to this
 query dimension.</dd></dl>
</li>
</ul>
<a name="sort(org.olap4j.query.SortOrder)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sort</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.471">sort</a>(<a href="../../../org/olap4j/query/SortOrder.html" title="enum in org.olap4j.query">SortOrder</a>&nbsp;order)</pre>
<div class="block">Sorts the dimension members by name in the
 order supplied as a parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>order</code> - The <a href="../../../org/olap4j/query/SortOrder.html" title="enum in org.olap4j.query"><code>SortOrder</code></a> to use.</dd></dl>
</li>
</ul>
<a name="getSortOrder()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSortOrder</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/SortOrder.html" title="enum in org.olap4j.query">SortOrder</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.480">getSortOrder</a>()</pre>
<div class="block">Returns the current order in which the
 dimension members are sorted.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>A value of <a href="../../../org/olap4j/query/SortOrder.html" title="enum in org.olap4j.query"><code>SortOrder</code></a></dd></dl>
</li>
</ul>
<a name="clearSort()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clearSort</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.487">clearSort</a>()</pre>
<div class="block">Clears the current sorting settings.</div>
</li>
</ul>
<a name="getHierarchizeMode()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHierarchizeMode</h4>
<pre>public&nbsp;<a href="../../../org/olap4j/query/QueryDimension.HierarchizeMode.html" title="enum in org.olap4j.query">QueryDimension.HierarchizeMode</a>&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.501">getHierarchizeMode</a>()</pre>
<div class="block">Returns the current mode of hierarchization, or null
 if no hierarchization is currently performed.

 <p>This capability is only available when a single dimension is
 selected on an axis</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Either a hierarchization mode value or null
     if no hierarchization is currently performed.</dd></dl>
</li>
</ul>
<a name="setHierarchizeMode(org.olap4j.query.QueryDimension.HierarchizeMode)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setHierarchizeMode</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.520">setHierarchizeMode</a>(<a href="../../../org/olap4j/query/QueryDimension.HierarchizeMode.html" title="enum in org.olap4j.query">QueryDimension.HierarchizeMode</a>&nbsp;hierarchizeMode)</pre>
<div class="block">Triggers the hierarchization of the included members within this
 QueryDimension.

 <p>The dimension inclusions will be wrapped in an MDX Hierarchize
 function call.

 <p>This capability is only available when a single dimension is
 selected on an axis.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>hierarchizeMode</code> - If parents should be included before or after
 their children. (Equivalent to the POST/PRE MDX literal for the
 Hierarchize() function)
 inside the Hierarchize() MDX function call.</dd></dl>
</li>
</ul>
<a name="clearHierarchizeMode()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clearHierarchizeMode</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.531">clearHierarchizeMode</a>()</pre>
<div class="block">Tells the QueryDimension not to hierarchize its included
 selections.

 <p>This capability is only available when a single dimension is
 selected on an axis.</div>
</li>
</ul>
<a name="setHierarchyConsistent(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setHierarchyConsistent</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.546">setHierarchyConsistent</a>(boolean&nbsp;consistent)</pre>
<div class="block">Tells the QueryDimension not to keep a consistent hierarchy
 within the inclusions when the mdx is generated.
 Only members whose Ancestors are included will be included.

 <p>It uses the MDX function FILTER() in combination with
 ANCESTOR() to produce a set like:<br /><br />
 {[Time].[1997]}, <br />
 Filter({{[Time].[Quarter].Members}},
 (Ancestor([Time].CurrentMember, [Time].[Year]) IN {[Time].[1997]}))</div>
</li>
</ul>
<a name="isHierarchyConsistent()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isHierarchyConsistent</h4>
<pre>public&nbsp;boolean&nbsp;<a href="../../../src-html/org/olap4j/query/QueryDimension.html#line.553">isHierarchyConsistent</a>()</pre>
<div class="block">Tells the QueryDimension not to keep a consistent hierarchy</div>
</li>
</ul>
<a name="addQueryNodeListener(org.olap4j.query.QueryNodeListener)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addQueryNodeListener</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryNodeImpl.html#line.36">addQueryNodeListener</a>(<a href="../../../org/olap4j/query/QueryNodeListener.html" title="interface in org.olap4j.query">QueryNodeListener</a>&nbsp;l)</pre>
<div class="block">Registers a new listener for a QueryNode.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>l</code> - The new listener object, implementation of QueryNodeListener</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/olap4j/query/QueryNodeListener.html" title="interface in org.olap4j.query"><code>QueryNodeListener</code></a></dd></dl>
</li>
</ul>
<a name="removeQueryNodeListener(org.olap4j.query.QueryNodeListener)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>removeQueryNodeListener</h4>
<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/olap4j/query/QueryNodeImpl.html#line.40">removeQueryNodeListener</a>(<a href="../../../org/olap4j/query/QueryNodeListener.html" title="interface in org.olap4j.query">QueryNodeListener</a>&nbsp;l)</pre>
<div class="block">De-registers a new listener for a QueryNode.
 If the listener object passed as a parameter was not registered,
 the method will return silently.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>l</code> - The listener object to de-register.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/olap4j/query/QueryNodeListener.html" title="interface in org.olap4j.query"><code>QueryNodeListener</code></a></dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><a href="http://sourceforge.net/projects/olap4j"><img src="http://sourceforge.net/sflogo.php?group_id=168953&type=1" width="88" height="31" border="0" alt="SourceForge.net_Logo"></a></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/olap4j/query/QueryAxis.html" title="class in org.olap4j.query"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/olap4j/query/QueryDimension.HierarchizeMode.html" title="enum in org.olap4j.query"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/olap4j/query/QueryDimension.html" target="_top">Frames</a></li>
<li><a href="QueryDimension.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>