Interface DimensionManager

All Known Implementing Classes:
DimensionManagerImpl

public interface DimensionManager
This class is used to manage custom dimensions.
  • Method Details

    • getCustomDimensions

      @NonNull List<CustomDimension> getCustomDimensions()
      Gets a list of all registered custom dimensions.
      Returns:
      a list of all registered custom dimensions
    • getDimension

      @Nullable CustomDimension getDimension(@NonNull String name)
      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.