Package org.apache.commons.text.diff
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
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 Summary
-
Method Summary
Methods inherited from class org.apache.commons.text.diff.EditCommand
getObject
-
Constructor Details
-
InsertCommand
Constructs a new instance of InsertCommand.- Parameters:
object
- the object of the second sequence that should be inserted
-
-
Method Details
-
accept
Accepts a visitor. When anInsertCommand
accepts a visitor, it calls itsvisitInsertCommand
method.- Specified by:
accept
in classEditCommand<T>
- Parameters:
visitor
- the visitor to be accepted
-