public final enum

BulkChangeType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.bitbucket.scm.bulk.BulkChangeType

Class Overview

Describes how a file has changed in a bulk content command.

Summary

Enum Values
BulkChangeType  ADD  File was added. 
BulkChangeType  DELETE  File was deleted compared to the "since" commit ID. 
BulkChangeType  MODIFY  File was modified compared to the "since" commit ID. 
Public Methods
static BulkChangeType valueOf(String name)
final static BulkChangeType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final BulkChangeType ADD

File was added. In case the parameters for the bulk content command didn't specify a "since" commit ID, all files will have this status.

public static final BulkChangeType DELETE

File was deleted compared to the "since" commit ID.

public static final BulkChangeType MODIFY

File was modified compared to the "since" commit ID.

Public Methods

public static BulkChangeType valueOf (String name)

public static final BulkChangeType[] values ()