public enum ExternalSystemType extends java.lang.Enum<ExternalSystemType>
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
ISSUE_MARKER |
| Modifier and Type | Method and Description |
|---|---|
static java.util.Optional<ExternalSystemType> |
findByName(java.lang.String name) |
static boolean |
isPresent(java.lang.String name) |
static java.util.Optional<java.lang.String> |
knownIssue(java.lang.String summary) |
abstract java.lang.String |
makeUrl(java.lang.String base,
java.lang.String id) |
static ExternalSystemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExternalSystemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalSystemType NONE
public static final ExternalSystemType JIRA
public static final ExternalSystemType TFS
public static final ExternalSystemType RALLY
public static final java.lang.String ISSUE_MARKER
public static ExternalSystemType[] values()
for (ExternalSystemType c : ExternalSystemType.values()) System.out.println(c);
public static ExternalSystemType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic abstract java.lang.String makeUrl(java.lang.String base,
java.lang.String id)
public static java.util.Optional<java.lang.String> knownIssue(java.lang.String summary)
public static java.util.Optional<ExternalSystemType> findByName(java.lang.String name)
public static boolean isPresent(java.lang.String name)