Enum Class FileHeader.PatchType

java.lang.Object
java.lang.Enum<FileHeader.PatchType>
org.eclipse.jgit.patch.FileHeader.PatchType
All Implemented Interfaces:
Serializable, Comparable<FileHeader.PatchType>, Constable
Enclosing class:
FileHeader

public static enum FileHeader.PatchType extends Enum<FileHeader.PatchType>
Type of patch used by this file.
  • Enum Constant Details

    • UNIFIED

      public static final FileHeader.PatchType UNIFIED
      A traditional unified diff style patch of a text file.
    • BINARY

      public static final FileHeader.PatchType BINARY
      An empty patch with a message "Binary files ... differ"
    • GIT_BINARY

      public static final FileHeader.PatchType GIT_BINARY
      A Git binary patch, holding pre and post image deltas
  • Constructor Details

    • PatchType

      private PatchType()
  • Method Details

    • values

      public static FileHeader.PatchType[] 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 FileHeader.PatchType 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