public enum IssueType extends Enum<IssueType>
| Enum Constant and Description |
|---|
BUG |
ONE_OFF |
PAYLOAD |
SUPPORT_PATCH |
UNDEFINED |
UPGRADE |
| Modifier and Type | Method and Description |
|---|---|
String |
get() |
static IssueType |
getMatchingIssueType(String value) |
static IssueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IssueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueType UNDEFINED
public static final IssueType PAYLOAD
public static final IssueType BUG
public static final IssueType UPGRADE
public static final IssueType ONE_OFF
public static final IssueType SUPPORT_PATCH
public static IssueType[] values()
for (IssueType c : IssueType.values()) System.out.println(c);
public static IssueType 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 get()
Copyright © 2017 JBoss by Red Hat. All rights reserved.