Enum Class DialogType

java.lang.Object
java.lang.Enum<DialogType>
org.gorpipe.querydialogs.DialogType
All Implemented Interfaces:
Serializable, Comparable<DialogType>, Constable

public enum DialogType extends Enum<DialogType>
The types of dialogs currently supported
  • Enum Constant Details

    • GENERIC

      public static final DialogType GENERIC
      A generic dialog
    • SET

      public static final DialogType SET
      A dialog representing a SDL set query
    • REPORT

      public static final DialogType REPORT
      A dialog representing a SDL report query (EVR)
    • LOG_REPORT

      public static final DialogType LOG_REPORT
      A dialog representing a SDL report query, expecting a base set
    • HTML_COL

      public static final DialogType HTML_COL
      A dialog which contains hints on how to render query results
  • Method Details

    • values

      public static DialogType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DialogType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null