Enum Class ColumnLayout.ColumnConfig

java.lang.Object
java.lang.Enum<ColumnLayout.ColumnConfig>
com.atlassian.jira.issue.fields.layout.column.ColumnLayout.ColumnConfig
All Implemented Interfaces:
Serializable, Comparable<ColumnLayout.ColumnConfig>, Constable
Enclosing interface:
ColumnLayout

public static enum ColumnLayout.ColumnConfig extends Enum<ColumnLayout.ColumnConfig>
Represents the cause or source of columns in an issue table, e.g. whether they were requested explicitly, configured as the columns of a filter or the user's configured defaults.
Since:
v6.1
  • Enum Constant Details

  • Method Details

    • values

      public static ColumnLayout.ColumnConfig[] 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 ColumnLayout.ColumnConfig 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
    • byValueIgnoreCase

      public static ColumnLayout.ColumnConfig byValueIgnoreCase(@Nullable String value)
      Gets a ColumnConfig by string value (name).
      Parameters:
      value - the case insensitive name to get the value for.
      Returns:
      the instance that corresponds to the given value or null if none exists.