Uses of Class
net.morimekta.diff.DiffOptions
-
-
Uses of DiffOptions in net.morimekta.diff
Methods in net.morimekta.diff that return DiffOptions Modifier and Type Method Description static DiffOptions
DiffOptions. defaults()
Get the default diff options.DiffOptions
DiffBase. getOptions()
Get the diff options used when diffing.DiffOptions
DiffOptions. withCheckLines(boolean checkLines)
Set the option to check line-line diff before inter-line diffs.DiffOptions
DiffOptions. withClock(java.time.Clock clock)
Use the clock instance when calculating deadline oversteps.DiffOptions
DiffOptions. withEditCost(int editCost)
Set the cost of an empty edit operation in terms of edit charactersDiffOptions
DiffOptions. withTimeout(double timeout)
Set the number of seconds to map a diff before giving up (0 for infinity).Constructors in net.morimekta.diff with parameters of type DiffOptions Constructor Description Bisect(java.lang.String text1, java.lang.String text2, DiffOptions options)
Bisect two strings.Diff(java.lang.String text1, java.lang.String text2, DiffOptions options)
Diff(java.lang.String text1, java.lang.String text2, DiffOptions options, long deadline)
DiffLines(java.lang.String text1, java.lang.String text2, DiffOptions options)
-