Interface DimensionManager
- All Known Implementing Classes:
DimensionManagerImpl
public interface DimensionManager
This class is used to manage custom dimensions.
-
Method Summary
Modifier and TypeMethodDescription@NonNull List<CustomDimension>Gets a list of all registered custom dimensions.@Nullable CustomDimensiongetDimension(@NonNull String name)Gets a custom dimension from a name.
-
Method Details
-
getCustomDimensions
@NonNull List<CustomDimension> getCustomDimensions()Gets a list of all registered custom dimensions.- Returns:
- a list of all registered custom dimensions
-
getDimension
Gets a custom dimension from a name.- Parameters:
name- the name of the custom dimension- Returns:
- the custom dimension with the given name. Will be null if the dimension does not exist.
-