public final enum

DiffWhitespace

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.bitbucket.content.DiffWhitespace

Class Overview

A flag for indicating how whitespace should be handled in a diff, such as being ignored.

Summary

Enum Values
DiffWhitespace  IGNORE_ALL  Ignore all whitespace in the diff. 
DiffWhitespace  SHOW  The default whitespace setting, where the exact changes of the diff are shown, whitespace and all. 
Public Methods
static DiffWhitespace fromString(String value)
static DiffWhitespace valueOf(String name)
final static DiffWhitespace[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DiffWhitespace IGNORE_ALL

Ignore all whitespace in the diff.

public static final DiffWhitespace SHOW

The default whitespace setting, where the exact changes of the diff are shown, whitespace and all.

Public Methods

public static DiffWhitespace fromString (String value)

Parameters
value the string value
Returns

public static DiffWhitespace valueOf (String name)

public static final DiffWhitespace[] values ()