Added in API level 24
IntSupplier
public
interface
IntSupplier
| java.util.function.IntSupplier |
Represents a supplier of int-valued results. This is the
int-producing primitive specialization of Supplier.
There is no requirement that a distinct result be returned each time the supplier is invoked.
This is a functional interface
whose functional method is getAsInt().
See also:
Summary
Public methods | |
|---|---|
abstract
int
|
getAsInt()
Gets a result. |
Public methods
Interfaces
- BiConsumer
- BiFunction
- BinaryOperator
- BiPredicate
- BooleanSupplier
- Consumer
- DoubleBinaryOperator
- DoubleConsumer
- DoubleFunction
- DoublePredicate
- DoubleSupplier
- DoubleToIntFunction
- DoubleToLongFunction
- DoubleUnaryOperator
- Function
- IntBinaryOperator
- IntConsumer
- IntFunction
- IntPredicate
- IntSupplier
- IntToDoubleFunction
- IntToLongFunction
- IntUnaryOperator
- LongBinaryOperator
- LongConsumer
- LongFunction
- LongPredicate
- LongSupplier
- LongToDoubleFunction
- LongToIntFunction
- LongUnaryOperator
- ObjDoubleConsumer
- ObjIntConsumer
- ObjLongConsumer
- Predicate
- Supplier
- ToDoubleBiFunction
- ToDoubleFunction
- ToIntBiFunction
- ToIntFunction
- ToLongBiFunction
- ToLongFunction
- UnaryOperator

