Enum FunctionMethod.PushDown

  • All Implemented Interfaces:
    Serializable, Comparable<FunctionMethod.PushDown>
    Enclosing class:
    FunctionMethod

    public static enum FunctionMethod.PushDown
    extends Enum<FunctionMethod.PushDown>
    Function Pushdown CAN_PUSHDOWN = If the source supports the function, then it will be pushed down. Must supply the Java impl CANNOT_PUSHDOWN = It will not be pushed down, evaluated in Teiid. Must supply the Java impl MUST_PUSHDOWN = Function must be pushed to source, no need to supply Java impl. SYNTHETIC = system functions that will be rewritten
    • Method Detail

      • values

        public static FunctionMethod.PushDown[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (FunctionMethod.PushDown c : FunctionMethod.PushDown.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FunctionMethod.PushDown valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null