xbrl.table.FormulaAxisType

The xbrl.table.FormulaAxisType enumeration defines the tree walk direction of a relationship node. See here for more details.

Constants

xbrl.table.FormulaAxisType.DESCENDANT

The tree walk should include all descendant nodes of the source node up to specified number of generations.

xbrl.table.FormulaAxisType.DESCENDANT_OR_SELF

The tree walk should include the source node itself and all descendant nodes up to specified number of generations.

xbrl.table.FormulaAxisType.CHILD

The tree walk should include all child nodes of the source node.

xbrl.table.FormulaAxisType.CHILD_OR_SELF

The tree walk should include the source node itself and all its child nodes.

xbrl.table.FormulaAxisType.SIBLING

The tree walk should include all sibling nodes of the source node.

xbrl.table.FormulaAxisType.SIBLING_OR_SELF

The tree walk should include the source node itself and all its sibling nodes.

xbrl.table.FormulaAxisType.SIBLING_OR_DESCENDANT

The tree walk should include all sibling and descendant nodes of the source node.

xbrl.table.FormulaAxisType.SIBLING_OR_DESCENDANT_OR_SELF

The tree walk should include the source node and its sibling and descendant nodes.