Interface CodePointFunction
-
- All Superinterfaces:
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 Serializable
A CharFunction can be used to convert one character to another.
-
-
Field Summary
Fields Modifier and Type Field Description static CodePointFunctionPASS_THRUstatic CodePointFunctionTO_LOWERCASEstatic CodePointFunctionTO_UPPERCASE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intvalueOf(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
-
-