Uses of Interface
org.apache.commons.collections4.sequence.CommandVisitor
-
Packages that use CommandVisitor Package Description org.apache.commons.collections4 This package contains the interfaces and utilities shared across all the subpackages of this component.org.apache.commons.collections4.sequence This package provides classes to compare two sequences of objects. -
-
Uses of CommandVisitor in org.apache.commons.collections4
Classes in org.apache.commons.collections4 that implement CommandVisitor Modifier and Type Class Description private static class
ListUtils.LcsVisitor<E>
A helper class used to construct the longest common subsequence. -
Uses of CommandVisitor in org.apache.commons.collections4.sequence
Classes in org.apache.commons.collections4.sequence that implement CommandVisitor Modifier and Type Class Description class
ReplacementsFinder<T>
This class handles sequences of replacements resulting from a comparison.Methods in org.apache.commons.collections4.sequence with parameters of type CommandVisitor Modifier and Type Method Description void
DeleteCommand. accept(CommandVisitor<T> visitor)
Accept a visitor.abstract void
EditCommand. accept(CommandVisitor<T> visitor)
Accept a visitor.void
InsertCommand. accept(CommandVisitor<T> visitor)
Accept a visitor.void
KeepCommand. accept(CommandVisitor<T> visitor)
Accept a visitor.void
EditScript. visit(CommandVisitor<T> visitor)
Visit the script.
-