Uses of Enum
io.qt.concurrent.QtConcurrent.ReduceOption
-
Uses of QtConcurrent.ReduceOption in io.qt.concurrent
Modifier and TypeMethodDescriptionfinal QtConcurrent.ReduceOption []
QtConcurrent.ReduceOptions.flags()
Returns an array of flag objects represented by this ReduceOptions.static QtConcurrent.ReduceOption
QtConcurrent.ReduceOption.resolve
(int value) Returns the corresponding enum entry for the given value.static QtConcurrent.ReduceOption
Returns the enum constant of this type with the specified name.static QtConcurrent.ReduceOption[]
QtConcurrent.ReduceOption.values()
Returns an array containing the constants of this enum type, in the order they are declared.Modifier and TypeMethodDescriptionstatic <U,
T> U QtConcurrent.blockingFilteredReduced
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReduceFunctor<U, T> reduceFunctor, QtConcurrent.ReduceOption ... options) static <U,
V, T> U QtConcurrent.blockingMappedReduced
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReduceFunctor<U, V> reduceFunctor, QtConcurrent.ReduceOption ... options) QtConcurrent.ReduceOption.cleared
(QtConcurrent.ReduceOption e) Excludes other enum entry from a flag of this entry.QtConcurrent.ReduceOption.combined
(QtConcurrent.ReduceOption e) Combines this entry with other enum entry.QtConcurrent.ReduceOptions.combined
(QtConcurrent.ReduceOption e) Combines this flags with enum entry.static <U,
T> QFuture<U> QtConcurrent.filteredReduced
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReduceFunctor<U, T> reduceFunctor, QtConcurrent.ReduceOption ... options) static QtConcurrent.ReduceOptions
QtConcurrent.ReduceOption.flags
(QtConcurrent.ReduceOption ... values) Creates a newQtConcurrent.ReduceOptions
from the entries.static <U,
V, T> QFuture<U> QtConcurrent.mappedReduced
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReduceFunctor<U, V> reduceFunctor, QtConcurrent.ReduceOption ... options) QtConcurrent.ReduceOptions.setFlag
(QtConcurrent.ReduceOption e) Sets the flage
QtConcurrent.ReduceOptions.setFlag
(QtConcurrent.ReduceOption e, boolean on) Sets or clears the flagflag
static <U,
T> QtConcurrent.ThreadEngineStarter<U> QtConcurrent.startFilteredReduced
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReduceFunctor<U, T> reduceFunctor, QtConcurrent.ReduceOption ... options) static <U,
V, T> QtConcurrent.ThreadEngineStarter<U> QtConcurrent.startMappedReduced
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReduceFunctor<U, V> reduceFunctor, QtConcurrent.ReduceOption... options) ModifierConstructorDescriptionReduceOptions
(QtConcurrent.ReduceOption ... args) Creates a new ReduceOptions where the flags inargs
are set.