Package Torello.Java.Function
Interface CharSupplier
-
- 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 CharSupplier
CharSupplier Documentation.
Quite similar to Java's'IntSupplier'
, the specialized 'Supplier' for primitive-integers, but whose'get'
method has been modified to return a'char'
-primitive.
Hi-Lited Source-Code:
- View Here: Torello/Java/Function/CharSupplier.java
- Open New Browser-Tab: Torello/Java/Function/CharSupplier.java
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method char
getAsChar()
-
-
-
Method Detail
-
getAsChar
char getAsChar()
Retrieves a result, as a'char'
.- Returns:
- The
'char'
result.
-
-