public final enum

CommitOrder

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

Summary

Enum Values
CommitOrder  DATE  Traverse commits in reverse date order, which is not guaranteed to be in topological order; parents may be shown before their descendant commits if the descendant commit predates the parent commit. 
CommitOrder  DEFAULT  Uses the default ordering of the underlying SCM  
CommitOrder  TOPOLOGICAL  Traverse the commits in topological order (i.e. 
Public Methods
static CommitOrder valueOf(String name)
final static CommitOrder[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final CommitOrder DATE

Traverse commits in reverse date order, which is not guaranteed to be in topological order; parents may be shown before their descendant commits if the descendant commit predates the parent commit.

public static final CommitOrder DEFAULT

Uses the default ordering of the underlying SCM

public static final CommitOrder TOPOLOGICAL

Traverse the commits in topological order (i.e. descendant commits are shown before their parents).

Public Methods

public static CommitOrder valueOf (String name)

public static final CommitOrder[] values ()