Op
s/OpCollection
s to the StaticDiscoverer
in tests
Discoverer
s are supposed to give a list of instances
NilConverter
NilConverter
Types
depends on org.scijava.util.MiscUtils.compare
, but I'm just going to figure out how to get the same functionality without that dependency)
Validated
, ValidityProblem
, and ValidityException
in the org.scijava.common3.validity
package
Priority
to that as well
POM
and Manifest
(and by extension Versioned
), which live in the package org.scijava.util
...
StringBuilder.append()
calls that included some String
variable. What might be better known is that String
concatenation with variables uses new StringBuilder().append(s1)...append(sN).toString()
uner the hood. What I learned was that chaining calls are heavily optimized over sequential calls.