Interface CodePointFunction
-
- All Superinterfaces:
java.io.Serializable
- 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 CodePointFunction extends java.io.Serializable
A CharFunction can be used to convert one character to another.
-
-
Field Summary
Fields Modifier and Type Field Description static CodePointFunction
PASS_THRU
static CodePointFunction
TO_LOWERCASE
static CodePointFunction
TO_UPPERCASE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
valueOf(int codePoint)
-
-
-
Field Detail
-
TO_UPPERCASE
static final CodePointFunction TO_UPPERCASE
-
TO_LOWERCASE
static final CodePointFunction TO_LOWERCASE
-
PASS_THRU
static final CodePointFunction PASS_THRU
-
-