Enum Diff.Operation

  • All Implemented Interfaces:
    Serializable, Comparable<Diff.Operation>
    Enclosing class:
    Diff<T>

    public static enum Diff.Operation
    extends Enum<Diff.Operation>
    The data structure representing a diff is a Linked list of Diff objects: {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"), Diff(Operation.EQUAL, " world.")} which means: delete "Hello", add "Goodbye" and keep " world."
    • Enum Constant Detail

      • DELETE

        public static final Diff.Operation DELETE
        Represents a deletion operation.
      • INSERT

        public static final Diff.Operation INSERT
        Represents an insertion operation.
      • EQUAL

        public static final Diff.Operation EQUAL
        Represents a "keep unchanged" operation.
    • Method Detail

      • values

        public static Diff.Operation[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Diff.Operation c : Diff.Operation.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Diff.Operation valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null