public enum Category extends Enum<Category>
| Enum Constant and Description |
|---|
ADMIN |
BAMBOO |
CHARTS |
CLOVER |
CONFLUENCE |
CROWD |
FE_CRU |
JIRA |
OTHER |
WALLBOARD |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static Category |
named(String categoryName) |
static Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Category JIRA
public static final Category CONFLUENCE
public static final Category FE_CRU
public static final Category CROWD
public static final Category CLOVER
public static final Category BAMBOO
public static final Category ADMIN
public static final Category CHARTS
public static final Category WALLBOARD
public static final Category OTHER
public static Category[] values()
for (Category c : Category.values()) System.out.println(c);
public static Category 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 String getName()
Copyright © 2024 Atlassian. All rights reserved.