public enum ProjectCacheKey extends Enum<ProjectCacheKey>
Enum Constant and Description |
---|
BUILD_NUMBER |
DEVELOP_BRANCH |
FEATURE_BRANCH |
FEATURE_DEPLOY_LABEL |
FEATURE_FINISH_LABEL |
FEATURE_START_LABEL |
HOTFIX_BRANCH |
HOTFIX_LABEL |
MASTER_BRANCH |
RELEASE_BRANCH |
RELEASE_FINISH_LABEL |
RELEASE_START_LABEL |
Modifier and Type | Method and Description |
---|---|
static ProjectCacheKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectCacheKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectCacheKey RELEASE_START_LABEL
public static final ProjectCacheKey MASTER_BRANCH
public static final ProjectCacheKey FEATURE_BRANCH
public static final ProjectCacheKey FEATURE_DEPLOY_LABEL
public static final ProjectCacheKey FEATURE_START_LABEL
public static final ProjectCacheKey FEATURE_FINISH_LABEL
public static final ProjectCacheKey HOTFIX_LABEL
public static final ProjectCacheKey HOTFIX_BRANCH
public static final ProjectCacheKey DEVELOP_BRANCH
public static final ProjectCacheKey RELEASE_BRANCH
public static final ProjectCacheKey RELEASE_FINISH_LABEL
public static final ProjectCacheKey BUILD_NUMBER
public static ProjectCacheKey[] values()
for (ProjectCacheKey c : ProjectCacheKey.values()) System.out.println(c);
public static ProjectCacheKey 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 nullCopyright © 2017 Atlassian. All rights reserved.