Uses of Interface
org.anchoranalysis.core.functional.checked.CheckedBiConsumer
Packages that use CheckedBiConsumer
Package
Description
Collection-related classes with general applicability that don't belong elsewhere.
Utilities and interfaces for applying functional-programming.
A collection of
Stack
s, each with a unique identifier
as a name.Adding/removing/changing the arguments (input and output) from the experiment via
command-line-options.
Combining multiple images together into a single image.
Tasks that involved stacks (usually each channel from an image) that are somehow
grouped-together.
Task(s) to export histograms of intensity values.
Non-bean classes about grouping channels or other inputs.
-
Uses of CheckedBiConsumer in org.anchoranalysis.core.collection
Methods in org.anchoranalysis.core.collection with parameters of type CheckedBiConsumerModifier and TypeMethodDescription<E extends Exception>
voidMapCreate.iterateEntries
(CheckedBiConsumer<K, V, E> operation) Iterate over each entry in the map, and apply an operation.Constructors in org.anchoranalysis.core.collection with parameters of type CheckedBiConsumerModifierConstructorDescriptionMapCreateCountdown
(Supplier<V> createNewElement, CheckedBiConsumer<K, V, OperationFailedException> cleanUpElement) Creates without a comparator, using aHashMap
internally. -
Uses of CheckedBiConsumer in org.anchoranalysis.core.functional
Methods in org.anchoranalysis.core.functional with parameters of type CheckedBiConsumerModifier and TypeMethodDescriptionstatic <K,
V, E extends Exception>
voidFunctionalIterate.iterateMap
(Map<K, V> map, CheckedBiConsumer<K, V, E> consumer) Iterate through all entries in aMap
. -
Uses of CheckedBiConsumer in org.anchoranalysis.image.core.stack.named
Methods in org.anchoranalysis.image.core.stack.named with parameters of type CheckedBiConsumerModifier and TypeMethodDescription<E extends Exception>
voidNamedStacks.forEach
(CheckedBiConsumer<String, StoreSupplier<Stack>, E> consumer) Iterates over each entry in the map. -
Uses of CheckedBiConsumer in org.anchoranalysis.launcher.options.process
Methods in org.anchoranalysis.launcher.options.process with parameters of type CheckedBiConsumerModifier and TypeMethodDescriptionprotected void
AddOptionsFromCommandLine.ifPresentSingleAssociated
(String optionShort, CheckedBiConsumer<T, String, ExperimentExecutionException> consumer) Executesconsumer
if maximally one option exists with a single argument - passingassociated
. -
Uses of CheckedBiConsumer in org.anchoranalysis.plugin.image.task.bean.combine
Methods in org.anchoranalysis.plugin.image.task.bean.combine with parameters of type CheckedBiConsumerModifier and TypeMethodDescriptionprotected void
AggregateChannelTask.processIndividual
(String name, Channel individual, boolean partOfGroup, CheckedBiConsumer<String, Channel, OperationFailedException> consumeIndividual, InputOutputContext context) -
Uses of CheckedBiConsumer in org.anchoranalysis.plugin.image.task.bean.grouped
Methods in org.anchoranalysis.plugin.image.task.bean.grouped with parameters of type CheckedBiConsumerModifier and TypeMethodDescriptionprotected abstract void
GroupedStackBase.processIndividual
(String name, S individual, boolean partOfGroup, CheckedBiConsumer<String, S, OperationFailedException> consumeIndividual, InputOutputContext context) Processes each derived individual element from aChannel
, callingconsumeIndividual
one or more times. -
Uses of CheckedBiConsumer in org.anchoranalysis.plugin.image.task.bean.grouped.histogram
Methods in org.anchoranalysis.plugin.image.task.bean.grouped.histogram with parameters of type CheckedBiConsumerModifier and TypeMethodDescriptionprotected void
ExportImageHistograms.processIndividual
(String name, Histogram individual, boolean partOfGroup, CheckedBiConsumer<String, Histogram, OperationFailedException> consumeIndividual, InputOutputContext context) -
Uses of CheckedBiConsumer in org.anchoranalysis.plugin.image.task.grouped
Constructors in org.anchoranalysis.plugin.image.task.grouped with parameters of type CheckedBiConsumerModifierConstructorDescriptionprotected
GroupMapByName
(String nounT, Optional<Stream<String>> groupIdentifiers, Optional<InputOutputContext> outputContext, Supplier<T> createAggregator, CheckedBiConsumer<S, T, OperationFailedException> addSingleToAggregator) Creates a group-map.