Uses of Enum Class
io.jenkins.plugins.forensics.delta.ChangeEditType
Packages that use ChangeEditType
Package
Description
Provides an API for calculating the code difference - so called 'delta' - between two commits.
-
Uses of ChangeEditType in io.jenkins.plugins.forensics.delta
Methods in io.jenkins.plugins.forensics.delta that return ChangeEditTypeModifier and TypeMethodDescriptionChange.getEditType()
static ChangeEditType
Returns the enum constant of this class with the specified name.static ChangeEditType[]
ChangeEditType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in io.jenkins.plugins.forensics.delta that return types with arguments of type ChangeEditTypeMethods in io.jenkins.plugins.forensics.delta with parameters of type ChangeEditTypeModifier and TypeMethodDescriptionFileChanges.getChangesByType
(ChangeEditType changeEditType) Returns information about changes of a specified type.Constructors in io.jenkins.plugins.forensics.delta with parameters of type ChangeEditTypeModifierConstructorDescriptionChange
(ChangeEditType changeEditType, int changedFromLine, int changedToLine, int fromLine, int toLine) Constructor for an instance which wraps a specific change within a file.Constructor parameters in io.jenkins.plugins.forensics.delta with type arguments of type ChangeEditTypeModifierConstructorDescriptionFileChanges
(String fileName, String oldFileName, String fileContent, FileEditType fileEditType, Map<ChangeEditType, Set<Change>> changes) Constructor for an instance which wraps all changes made to a specific file.