public enum BranchIntegrationStrategy extends Enum<BranchIntegrationStrategy>
| Enum Constant and Description | 
|---|
BRANCH_UPDATER  | 
GATE_KEEPER  | 
| Modifier and Type | Method and Description | 
|---|---|
static BranchIntegrationStrategy | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static BranchIntegrationStrategy[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final BranchIntegrationStrategy BRANCH_UPDATER
public static final BranchIntegrationStrategy GATE_KEEPER
public static BranchIntegrationStrategy[] values()
for (BranchIntegrationStrategy c : BranchIntegrationStrategy.values()) System.out.println(c);
public static BranchIntegrationStrategy 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 © 2016 Atlassian Software Systems Pty Ltd. All rights reserved.