Enum Class DiffWhitespace

java.lang.Object
java.lang.Enum<DiffWhitespace>
com.atlassian.bitbucket.content.DiffWhitespace
All Implemented Interfaces:
Serializable, Comparable<DiffWhitespace>, Constable

public enum DiffWhitespace extends Enum<DiffWhitespace>
A flag for indicating how whitespace should be handled in a diff, such as being ignored.
  • Enum Constant Details

    • SHOW

      public static final DiffWhitespace SHOW
      The default whitespace setting, where the exact changes of the diff are shown, whitespace and all.
    • IGNORE_ALL

      public static final DiffWhitespace IGNORE_ALL
      Ignore all whitespace in the diff.
  • Method Details

    • values

      public static DiffWhitespace[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DiffWhitespace valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • fromString

      public static DiffWhitespace fromString(String value)
      Parameters:
      value - the string value
      Returns:
      a coerced string to a DiffWhitespace value, or SHOW, but never null.