Stay organized with collections
Save and categorize content based on your preferences.
IntSupplier
@FunctionalInterface interface 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()
.
Summary
Public methods |
abstract Int |
Gets a result.
|
Public methods
getAsInt
abstract fun getAsInt(): Int
Gets a result.
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# IntSupplier\n\nAdded in [API level 24](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nIntSupplier\n===========\n\n```\n@FunctionalInterface interface IntSupplier\n```\n\n|-------------------------------------|\n| [java.util.function.IntSupplier](#) |\n\nRepresents a supplier of `int`-valued results. This is the `int`-producing primitive specialization of [Supplier](/reference/kotlin/java/util/function/Supplier).\n\nThere is no requirement that a distinct result be returned each time the supplier is invoked.\n\nThis is a [functional interface](/reference/kotlin/java/util/function/package-summary) whose functional method is [getAsInt()](#getAsInt()).\n\nSummary\n-------\n\n| Public methods ||\n|-------------------------------------------------------------------------------------|--------------------------------------------|\n| abstract [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) | [getAsInt](#getAsInt())`()` Gets a result. |\n\nPublic methods\n--------------\n\n### getAsInt\n\nAdded in [API level 24](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun getAsInt(): Int\n```\n\nGets a result.\n\n| Return ||\n|----------------------------------------------------------------------------|----------|\n| [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) | a result |"]]