Class DefaultFunctionFactory.OrdinalFunction

  • All Implemented Interfaces:
    Function
    Enclosing class:
    DefaultFunctionFactory

    public static class DefaultFunctionFactory.OrdinalFunction
    extends BaseFunction
    Takes a single character string and returns the integer codepoint of the character. For example, ordinal("💩") = 0x1F4A9
    • Constructor Detail

      • OrdinalFunction

        public OrdinalFunction()
    • Method Detail

      • initArgs

        public void initArgs​(Expression[] args)
        Description copied from interface: Function
        Initialize this function with the given arguments.
      • getType

        public java.lang.Class<?> getType()
        Description copied from interface: Function
        Returns the type that this function will return upon execution
      • getArgDocString

        public java.lang.String getArgDocString()
        Description copied from interface: Function
        Returns a string to be used in the auto-generated function documentation. The string should represent the arguments for the function, such as "string, count" for the "repeat" function.