Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.pivot.olap.set
Interface SelectionConstants

All Known Implementing Classes:
SingleSetSelection

public interface SelectionConstants

Interface holding commonly used selection operators between datasources. These operators can be used as a mask, e.g. if one wants to select children and siblings of a member, a value of CHILDREN | SIBLINGS should be used as operator.


Field Summary
static int ANCESTORS
          constant indicating that all of the member's ancestors are selected
static int CHILDREN
          constant indicating that the children members are selected
static int DESCENDANTS
          constant indicating that all of the member's descendants are selected
static int LEAVES
          constant indicating that only the leaf members of a member are selected
static int PARENT
          constant indicating that the parent of a member is selected
static int SELF
          constant indicating that the current member is selected
static int SIBLINGS
          constant indicating that the siblings of a member are selected
 

Field Detail

SELF

static final int SELF
constant indicating that the current member is selected

See Also:
Constant Field Values

CHILDREN

static final int CHILDREN
constant indicating that the children members are selected

See Also:
Constant Field Values

SIBLINGS

static final int SIBLINGS
constant indicating that the siblings of a member are selected

See Also:
Constant Field Values

PARENT

static final int PARENT
constant indicating that the parent of a member is selected

See Also:
Constant Field Values

DESCENDANTS

static final int DESCENDANTS
constant indicating that all of the member's descendants are selected

See Also:
Constant Field Values

ANCESTORS

static final int ANCESTORS
constant indicating that all of the member's ancestors are selected

See Also:
Constant Field Values

LEAVES

static final int LEAVES
constant indicating that only the leaf members of a member are selected

See Also:
Constant Field Values

Copyright © 2011 Citra Technologies. All Rights Reserved.