Enum Class DeltaEntry.ChangeType

java.lang.Object
java.lang.Enum<DeltaEntry.ChangeType>
org.egothor.methodatlas.DeltaEntry.ChangeType
All Implemented Interfaces:
Serializable, Comparable<DeltaEntry.ChangeType>, Constable
Enclosing class:
DeltaEntry

public static enum DeltaEntry.ChangeType extends Enum<DeltaEntry.ChangeType>
The type of change represented by a DeltaEntry.
  • Enum Constant Details

    • ADDED

      public static final DeltaEntry.ChangeType ADDED
      Method is present in the after scan but not the before scan.
    • REMOVED

      public static final DeltaEntry.ChangeType REMOVED
      Method is present in the before scan but not the after scan.
    • MODIFIED

      public static final DeltaEntry.ChangeType MODIFIED
      Method is present in both scans but at least one comparable field differs.
  • Method Details

    • values

      public static DeltaEntry.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 DeltaEntry.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