Enum ProductTopic

    • Enum Constant Detail

      • DATA_SOURCES

        public static final ProductTopic DATA_SOURCES
      • RESULTS_PAGE

        public static final ProductTopic RESULTS_PAGE
      • SEARCH_PACKAGES

        public static final ProductTopic SEARCH_PACKAGES
      • ANALYTICS_REPORTING

        public static final ProductTopic ANALYTICS_REPORTING
      • APPLICATION_ADMINISTRATION

        public static final ProductTopic APPLICATION_ADMINISTRATION
      • INTEGRATION_DEVELOPMENT

        public static final ProductTopic INTEGRATION_DEVELOPMENT
      • RANKING_SORTING

        public static final ProductTopic RANKING_SORTING
      • SYSTEM_ADMINISTRATION

        public static final ProductTopic SYSTEM_ADMINISTRATION
    • Field Detail

      • topic

        private final String topic
    • Constructor Detail

      • ProductTopic

        private ProductTopic​(String topic)
    • Method Detail

      • values

        public static ProductTopic[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ProductTopic c : ProductTopic.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ProductTopic valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getTopic

        public String getTopic()