public static enum ColumnLayout.ColumnConfig extends Enum<ColumnLayout.ColumnConfig>
Enum Constant and Description |
---|
EXPLICIT
Columns were explicitly listed in the issue table request.
|
FILTER
Columns come from the filter.
|
NONE
No columns are used.
|
SYSTEM
Columns come from the system defaults
|
USER
Columns come from the user's default column config.
|
Modifier and Type | Method and Description |
---|---|
static ColumnLayout.ColumnConfig |
byValueIgnoreCase(String value)
Gets a ColumnConfig by string value (name).
|
static ColumnLayout.ColumnConfig |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnLayout.ColumnConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnLayout.ColumnConfig SYSTEM
public static final ColumnLayout.ColumnConfig EXPLICIT
public static final ColumnLayout.ColumnConfig FILTER
public static final ColumnLayout.ColumnConfig USER
public static final ColumnLayout.ColumnConfig NONE
public static ColumnLayout.ColumnConfig[] values()
for (ColumnLayout.ColumnConfig c : ColumnLayout.ColumnConfig.values()) System.out.println(c);
public static ColumnLayout.ColumnConfig valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ColumnLayout.ColumnConfig byValueIgnoreCase(@Nullable String value)
value
- the case insensitive name to get the value for.Copyright © 2002-2018 Atlassian. All Rights Reserved.