public final enum

CommitListMergeFilter

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.bitbucket.commit.CommitListMergeFilter

Class Overview

A flag for indicating how merge commits should be filtered.

Summary

Enum Values
CommitListMergeFilter  EXCLUDE  Exclude merge commits. 
CommitListMergeFilter  INCLUDE  Include merge commits. 
CommitListMergeFilter  ONLY  Include only merge commits. 
Public Methods
static CommitListMergeFilter fromString(String stringValue, CommitListMergeFilter defaultValue)
Coerces a string to a CommitListMergeFilter or returns the supplied default value if this is not possible.
static CommitListMergeFilter valueOf(String name)
final static CommitListMergeFilter[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final CommitListMergeFilter EXCLUDE

Exclude merge commits.

public static final CommitListMergeFilter INCLUDE

Include merge commits. This does not exclude non-merge commits.

public static final CommitListMergeFilter ONLY

Include only merge commits.

Public Methods

public static CommitListMergeFilter fromString (String stringValue, CommitListMergeFilter defaultValue)

Coerces a string to a CommitListMergeFilter or returns the supplied default value if this is not possible.

Parameters
stringValue the string value of the commit list merge filter
defaultValue the default value to return if coercion is not possible
Returns

public static CommitListMergeFilter valueOf (String name)

public static final CommitListMergeFilter[] values ()