Navigation :
test ../../../ test dev.html
Developer Guide
test ../../../ test dev/dev-overview.html
-
Overview
test ../../../ test dev/dev-release.html
-
Release and migration notes
test ../../../ test dev/dev-features.html
-
Features
test ../../../ test dev/dev-packages.html
-
Available packages
test ../../../ test dev/dev-packages/aggregators.html
--
aggregators
test ../../../ test dev/dev-packages/comparators.html
--
comparators
test ../../../ test dev/dev-packages/context.html
--
context
test ../../../ test dev/dev-packages/hierarchies.html
--
Custom analysis hierarchies
test ../../../ test dev/dev-packages/hierarchies/analysis-hierarchy-expansion-procedure.html
--- AnalysisHierarchyExpansionProcedure
test ../../../ test dev/dev-packages/hierarchies/constant-hierarchy.html
--- ConstantHierarchy
test ../../../ test dev/dev-packages/hierarchies/date-slicer-hierarchy.html
--- DateSlicerHierarchy
test ../../../ test dev/dev-packages/hierarchies/dictionary-hierarchy.html
--- DictionaryHierarchy
test ../../../ test dev/dev-packages/hierarchies/dummy-hierarchy.html
--- DummyHierarchy
test ../../../ test dev/dev-packages/hierarchies/fx-hierarchy.html
--- FxHierarchy
test ../../../ test dev/dev-packages/hierarchies/hierarchy-with-extra-store-fields.html
--- HierarchyWithExtraStoreFields
test ../../../ test dev/dev-packages/hierarchies/sign-off-analysis-hierarchy.html
--- SignOffAnalysisHierarchy
test ../../../ test dev/dev-packages/postprocessor.html
--
post-processor
test ../../../ test dev/dev-packages/services.html
--
services
test ../../../ test dev/dev-packages/signoff.html
--
signoff
test ../../../ test dev/dev-packages/spring.html
--
spring
test ../../../ test dev/dev-packages/tailmeasure.html
--
tailmeasure
test ../../../ test dev/dev-packages/utils.html
--
utils
test ../../../ test dev/dev-packages/vector.html
--
vector
FxHierarchy
This hierarchy connects to the IFxRates
bean and will fill the single level with the return of the method IFxRates::getAvailableCurrencies
.
The bean has to be declared by a call to the Atoti registration.
import com.activeviam.accelerator.common.postprocessor.fxconversion.impl.FxHierarchy;
// ....
PostProcessorUtils. injectAll ( IFXRatesAware. class , fxRates);
// ....
hierarchyBuilder. toDimension ( CURRENCY_DIMENSION,
FxHierarchy. hierarchy ( DISPLAY_CURRENCY_HIERARCHY)
. slicing ()
. withLevel ( DISPLAY_CURRENCY_LEVEL)
. withCurrenciesOrder ( "EUR" , "USD" ));
Here are the methods exposed to set up the hierarchy:
Method
Parameters
Mandatory
Usage
withAllMembersEnabled
Boolean
Specifies if the level 0 is the AllMembers level. Set to false makes the dimension slicing.
slicing
Makes the hierarchy slicing, equivalent to withAllMembersEnabled(false)
.
withVisible
Boolean
Sets the visible flag to the hierarchy.
hidden
Hides the hierarchy, equivalent to withVisible(false)
withLevel
String
X
Specifies the name of the required level.
withType
int
The Copper type of the level (mandatory for Copper usage), for instance withType(Types.TYPE_STRING)
.
withComparator
IComparator
Sets the level comparator directly from a comparator object instance (the running hierarchy will create its own instance).
withComparator
IComparatorDescription
Sets the level comparator from a comparator description.
withComparator
String
Sets the level comparator from a comparator Plug-In Key.
withCurrenciesOrder
String…
Sets the level comparator with the provided currencies first.
withCurrenciesOrder
List
Sets the level comparator with the provided currencies first.