public static final enum

ColumnLayout.ColumnConfig

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.jira.issue.fields.layout.column.ColumnLayout.ColumnConfig

Class Overview

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.

Summary

Enum Values
ColumnLayout.ColumnConfig  EXPLICIT  Columns were explicitly listed in the issue table request. 
ColumnLayout.ColumnConfig  FILTER  Columns come from the filter. 
ColumnLayout.ColumnConfig  NONE  No columns are used. 
ColumnLayout.ColumnConfig  SYSTEM  Columns come from the system defaults  
ColumnLayout.ColumnConfig  USER  Columns come from the user's default column config. 
Public Methods
static ColumnLayout.ColumnConfig byValueIgnoreCase(String value)
Gets a ColumnConfig by string value (name).
static ColumnLayout.ColumnConfig valueOf(String name)
final static ColumnConfig[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ColumnLayout.ColumnConfig EXPLICIT

Columns were explicitly listed in the issue table request.

public static final ColumnLayout.ColumnConfig FILTER

Columns come from the filter.

public static final ColumnLayout.ColumnConfig NONE

No columns are used. The default value.

public static final ColumnLayout.ColumnConfig SYSTEM

Columns come from the system defaults

public static final ColumnLayout.ColumnConfig USER

Columns come from the user's default column config.

Public Methods

public static ColumnLayout.ColumnConfig byValueIgnoreCase (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.

public static ColumnLayout.ColumnConfig valueOf (String name)

public static final ColumnConfig[] values ()