public final enum

PullRequestMergeConfigType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.bitbucket.pull.PullRequestMergeConfigType

Class Overview

Configuration for pull request merge strategies can be applied at different levels, which are described here.

Summary

Enum Values
PullRequestMergeConfigType  DEFAULT  Merge strategies have not been explicitly configured at any level, so the SCM's defaults are being used. 
PullRequestMergeConfigType  PROJECT  Merge strategies have been configured for the project. 
PullRequestMergeConfigType  REPOSITORY  Merge strategies have been configured for the repository. 
PullRequestMergeConfigType  SCM  Merge strategies have been configured globally for all repositories using this SCM. 
Public Methods
static PullRequestMergeConfigType valueOf(String name)
final static PullRequestMergeConfigType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final PullRequestMergeConfigType DEFAULT

Merge strategies have not been explicitly configured at any level, so the SCM's defaults are being used.

public static final PullRequestMergeConfigType PROJECT

Merge strategies have been configured for the project. This is more specific than SCM level configuration, but can be overridden by repository level configuration.

public static final PullRequestMergeConfigType REPOSITORY

Merge strategies have been configured for the repository. This is the most specific level of configuration, overriding project and SCM level configuration, and cannot be overridden by configuration at any other level.

public static final PullRequestMergeConfigType SCM

Merge strategies have been configured globally for all repositories using this SCM. This is the least specific level of configuration, and can be overridden by configuration at the project or repository level.

Public Methods

public static PullRequestMergeConfigType valueOf (String name)

public static final PullRequestMergeConfigType[] values ()