Interface CharFunction
-
- 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 @Deprecated public interface CharFunction extends Serializable
Deprecated.since 3.0. UseCharToCharFunctioninstead.A CharFunction can be used to convert one character to another.
-
-
Field Summary
Fields Modifier and Type Field Description static CharFunctionTO_LOWERCASEDeprecated.static CharFunctionTO_UPPERCASEDeprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description charvalueOf(char character)Deprecated.
-
-
-
Field Detail
-
TO_UPPERCASE
static final CharFunction TO_UPPERCASE
Deprecated.
-
TO_LOWERCASE
static final CharFunction TO_LOWERCASE
Deprecated.
-
-