Enum RenderingType

    • Enum Constant Detail

      • NO_GRAPH

        public static final RenderingType NO_GRAPH
        Enum value NoGraph.
      • TABLE

        public static final RenderingType TABLE
        Enum value Table.
      • TIME_SERIES

        public static final RenderingType TIME_SERIES
        Enum value TimeSeries.
      • TIME_SERIES_PER_INSTANCE

        public static final RenderingType TIME_SERIES_PER_INSTANCE
        Enum value TimeSeriesPerInstance.
      • PIE_CHART

        public static final RenderingType PIE_CHART
        Enum value PieChart.
      • DATA_SUMMARY

        public static final RenderingType DATA_SUMMARY
        Enum value DataSummary.
      • EMAIL

        public static final RenderingType EMAIL
        Enum value Email.
      • INSIGHTS

        public static final RenderingType INSIGHTS
        Enum value Insights.
      • DYNAMIC_INSIGHT

        public static final RenderingType DYNAMIC_INSIGHT
        Enum value DynamicInsight.
      • MARKDOWN

        public static final RenderingType MARKDOWN
        Enum value Markdown.
      • DETECTOR

        public static final RenderingType DETECTOR
        Enum value Detector.
      • DROP_DOWN

        public static final RenderingType DROP_DOWN
        Enum value DropDown.
      • SOLUTION

        public static final RenderingType SOLUTION
        Enum value Solution.
      • GUAGE

        public static final RenderingType GUAGE
        Enum value Guage.
      • CHANGE_SETS

        public static final RenderingType CHANGE_SETS
        Enum value ChangeSets.
      • CHANGE_ANALYSIS_ONBOARDING

        public static final RenderingType CHANGE_ANALYSIS_ONBOARDING
        Enum value ChangeAnalysisOnboarding.
      • CHANGES_VIEW

        public static final RenderingType CHANGES_VIEW
        Enum value ChangesView.
      • APP_INSIGHT

        public static final RenderingType APP_INSIGHT
        Enum value AppInsight.
      • DEPENDENCY_GRAPH

        public static final RenderingType DEPENDENCY_GRAPH
        Enum value DependencyGraph.
      • DOWN_TIME

        public static final RenderingType DOWN_TIME
        Enum value DownTime.
      • SUMMARY_CARD

        public static final RenderingType SUMMARY_CARD
        Enum value SummaryCard.
      • SEARCH_COMPONENT

        public static final RenderingType SEARCH_COMPONENT
        Enum value SearchComponent.
      • APP_INSIGHT_ENABLEMENT

        public static final RenderingType APP_INSIGHT_ENABLEMENT
        Enum value AppInsightEnablement.
    • Method Detail

      • values

        public static RenderingType[] 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 (RenderingType c : RenderingType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RenderingType 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
      • fromString

        public static RenderingType fromString​(String value)
        Parses a serialized value to a RenderingType instance.
        Parameters:
        value - the serialized value to parse.
        Returns:
        the parsed RenderingType object, or null if unable to parse.