Class InsertCommand<T>

java.lang.Object
org.apache.commons.text.diff.EditCommand<T>
org.apache.commons.text.diff.InsertCommand<T>
Type Parameters:
T - object type

public class InsertCommand<T> extends EditCommand<T>
Command representing the insertion of one object of the second sequence.

When one object of the second sequence has no corresponding object in the first sequence at the right place, the edit script transforming the first sequence into the second sequence uses an instance of this class to represent the insertion of this object. The objects embedded in these type of commands always come from the second sequence.

Since:
1.0
See Also:
  • Constructor Details

    • InsertCommand

      public InsertCommand(T object)
      Constructs a new instance of InsertCommand.
      Parameters:
      object - the object of the second sequence that should be inserted
  • Method Details