Enum WidgetPropertyType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<WidgetPropertyType>

    @Deprecated
    public enum WidgetPropertyType
    extends java.lang.Enum<WidgetPropertyType>
    Deprecated.
    since 6.2, this extension is ignored as dashboards have been removed
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BOOLEAN
      Deprecated.
      True/False
      FILTER
      Deprecated.
      Measure Filter id
      FLOAT
      Deprecated.
      Floating point number
      INTEGER
      Deprecated.
      Integer value, positive or negative
      ISSUE_FILTER
      Deprecated.
      Issue Filter id
      METRIC
      Deprecated.
      Sonar Metric
      PASSWORD
      Deprecated.
      Variation of {#STRING} with masked characters
      REGULAR_EXPRESSION
      Deprecated.
      Regular expression
      SINGLE_SELECT_LIST
      Deprecated.
      Single select list with a list of options
      STRING
      Deprecated.
      Basic single line input field
      TEXT
      Deprecated.
      Multiple line text-area
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static WidgetPropertyType valueOf​(java.lang.String name)
      Deprecated.
      Returns the enum constant of this type with the specified name.
      static WidgetPropertyType[] values()
      Deprecated.
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • INTEGER

        public static final WidgetPropertyType INTEGER
        Deprecated.
        Integer value, positive or negative
      • STRING

        public static final WidgetPropertyType STRING
        Deprecated.
        Basic single line input field
      • METRIC

        public static final WidgetPropertyType METRIC
        Deprecated.
        Sonar Metric
        Since:
        2.10
      • FILTER

        public static final WidgetPropertyType FILTER
        Deprecated.
        Measure Filter id
        Since:
        3.1
      • ISSUE_FILTER

        public static final WidgetPropertyType ISSUE_FILTER
        Deprecated.
        Issue Filter id
        Since:
        3.7
      • TEXT

        public static final WidgetPropertyType TEXT
        Deprecated.
        Multiple line text-area
        Since:
        3.2
      • PASSWORD

        public static final WidgetPropertyType PASSWORD
        Deprecated.
        Variation of {#STRING} with masked characters
        Since:
        3.2
      • REGULAR_EXPRESSION

        public static final WidgetPropertyType REGULAR_EXPRESSION
        Deprecated.
        Regular expression
        Since:
        3.2
      • SINGLE_SELECT_LIST

        public static final WidgetPropertyType SINGLE_SELECT_LIST
        Deprecated.
        Single select list with a list of options
        Since:
        3.5
    • Method Detail

      • values

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

        public static WidgetPropertyType valueOf​(java.lang.String name)
        Deprecated.
        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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null