Enum Class DiffEntry.ChangeType

java.lang.Object
java.lang.Enum<DiffEntry.ChangeType>
org.eclipse.jgit.diff.DiffEntry.ChangeType
All Implemented Interfaces:
Serializable, Comparable<DiffEntry.ChangeType>, Constable
Enclosing class:
DiffEntry

public static enum DiffEntry.ChangeType extends Enum<DiffEntry.ChangeType>
General type of change a single file-level patch describes.
  • Enum Constant Details

    • ADD

      public static final DiffEntry.ChangeType ADD
      Add a new file to the project
    • MODIFY

      public static final DiffEntry.ChangeType MODIFY
      Modify an existing file in the project (content and/or mode)
    • DELETE

      public static final DiffEntry.ChangeType DELETE
      Delete an existing file from the project
    • RENAME

      public static final DiffEntry.ChangeType RENAME
      Rename an existing file to a new location
    • COPY

      public static final DiffEntry.ChangeType COPY
      Copy an existing file to a new location, keeping the original
  • Constructor Details

    • ChangeType

      private ChangeType()
  • Method Details

    • values

      public static DiffEntry.ChangeType[] 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 DiffEntry.ChangeType 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