Uses of Interface
java.util.function.UnaryOperator
Packages that use UnaryOperator
Package
Description
Provides a simple high-level Http server API, which can be used to build
   embedded HTTP servers.
 Access to date and time using fields and units, and date time adjusters.
Contains the collections framework, some internationalization support classes,
 a service loader, properties, random number generation, string parsing
 and scanning classes, base64 encoding and decoding, a bit array, and
 several miscellaneous utility classes.
A small toolkit of classes that support lock-free thread-safe
 programming on single variables.
Functional interfaces provide target types for lambda expressions
 and method references.
Classes to support functional-style operations on streams of elements, such
 as map-reduce transformations on collections.
- 
Uses of UnaryOperator in com.sun.net.httpserverMethods in com.sun.net.httpserver with parameters of type UnaryOperatorModifier and TypeMethodDescriptionstatic FilterFilter.adaptRequest(String description, UnaryOperator<Request> requestOperator) Returns a pre-processing Filter that inspects and possibly adapts the request state.
- 
Uses of UnaryOperator in java.time.temporalMethods in java.time.temporal with parameters of type UnaryOperatorModifier and TypeMethodDescriptionstatic TemporalAdjusterTemporalAdjusters.ofDateAdjuster(UnaryOperator<LocalDate> dateBasedAdjuster) Obtains aTemporalAdjusterthat wraps a date adjuster.
- 
Uses of UnaryOperator in java.utilMethods in java.util with parameters of type UnaryOperatorModifier and TypeMethodDescriptiondefault voidList.replaceAll(UnaryOperator<E> operator) Replaces each element of this list with the result of applying the operator to that element (optional operation).voidVector.replaceAll(UnaryOperator<E> operator) 
- 
Uses of UnaryOperator in java.util.concurrent.atomicMethods in java.util.concurrent.atomic with parameters of type UnaryOperatorModifier and TypeMethodDescriptionfinal VAtomicReference.getAndUpdate(UnaryOperator<V> updateFunction) Atomically updates (with memory effects as specified byVarHandle.compareAndSet(java.lang.Object...)) the current value with the results of applying the given function, returning the previous value.final EAtomicReferenceArray.getAndUpdate(int i, UnaryOperator<E> updateFunction) Atomically updates (with memory effects as specified byVarHandle.compareAndSet(java.lang.Object...)) the element at indexiwith the results of applying the given function, returning the previous value.final VAtomicReferenceFieldUpdater.getAndUpdate(T obj, UnaryOperator<V> updateFunction) Atomically updates (with memory effects as specified byVarHandle.compareAndSet(java.lang.Object...)) the field of the given object managed by this updater with the results of applying the given function, returning the previous value.final VAtomicReference.updateAndGet(UnaryOperator<V> updateFunction) Atomically updates (with memory effects as specified byVarHandle.compareAndSet(java.lang.Object...)) the current value with the results of applying the given function, returning the updated value.final EAtomicReferenceArray.updateAndGet(int i, UnaryOperator<E> updateFunction) Atomically updates (with memory effects as specified byVarHandle.compareAndSet(java.lang.Object...)) the element at indexiwith the results of applying the given function, returning the updated value.final VAtomicReferenceFieldUpdater.updateAndGet(T obj, UnaryOperator<V> updateFunction) Atomically updates (with memory effects as specified byVarHandle.compareAndSet(java.lang.Object...)) the field of the given object managed by this updater with the results of applying the given function, returning the updated value.
- 
Uses of UnaryOperator in java.util.functionMethods in java.util.function that return UnaryOperatorModifier and TypeMethodDescriptionstatic <T> UnaryOperator<T> UnaryOperator.identity()Returns a unary operator that always returns its input argument.
- 
Uses of UnaryOperator in java.util.streamMethods in java.util.stream with parameters of type UnaryOperatorModifier and TypeMethodDescriptionstatic <T> Stream<T> Stream.iterate(T seed, Predicate<? super T> hasNext, UnaryOperator<T> next) Returns a sequential orderedStreamproduced by iterative application of the givennextfunction to an initial element, conditioned on satisfying the givenhasNextpredicate.static <T> Stream<T> Stream.iterate(T seed, UnaryOperator<T> f) Returns an infinite sequential orderedStreamproduced by iterative application of a functionfto an initial elementseed, producing aStreamconsisting ofseed,f(seed),f(f(seed)), etc.