Interface IntUnaryOperator

All Superinterfaces:
Function<Integer,​Integer>, IntUnaryOperator, UnaryOperator<Integer>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public interface IntUnaryOperator
extends UnaryOperator<Integer>, IntUnaryOperator
A type-specific UnaryOperator; provides methods operating both on objects and on primitives.
Since:
8.5.0
See Also:
UnaryOperator
  • Method Summary

    Modifier and Type Method Description
    int apply​(int x)
    Computes the operator on the given input.
    default Integer apply​(Integer x)
    Deprecated.
    Please use the corresponding type-specific method instead.
    default int applyAsInt​(int x)
    Deprecated.
    Please use apply(int).
    static IntUnaryOperator identity()
    Returns a UnaryOperator that always returns the input unmodified.
    static IntUnaryOperator negation()
    Returns a UnaryOperator that always returns the arithmetic negation of the input.

    Methods inherited from interface java.util.function.Function

    andThen, compose

    Methods inherited from interface java.util.function.IntUnaryOperator

    andThen, compose
  • Method Details