Interface CharFunction

  • 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
    @Deprecated
    public interface CharFunction
    extends java.io.Serializable
    Deprecated.
    since 3.0. Use CharToCharFunction instead.
    A CharFunction can be used to convert one character to another.
    • Field Detail

      • TO_UPPERCASE

        static final CharFunction TO_UPPERCASE
        Deprecated.
      • TO_LOWERCASE

        static final CharFunction TO_LOWERCASE
        Deprecated.
    • Method Detail

      • valueOf

        char valueOf​(char character)
        Deprecated.