Package org.apache.flink.api.java.functions.FunctionAnnotation

Examples of org.apache.flink.api.java.functions.FunctionAnnotation.ConstantFieldsFirstExcept


        parseConstantFieldsFirst(cff.value(), result, inType1, outType);
      } else if (ann instanceof ConstantFieldsSecond) {
        ConstantFieldsSecond cfs = (ConstantFieldsSecond) ann;
        parseConstantFieldsSecond(cfs.value(), result, inType2, outType);
      } else if (ann instanceof ConstantFieldsFirstExcept) {
        ConstantFieldsFirstExcept cffe = (ConstantFieldsFirstExcept) ann;
        parseConstantFieldsFirstExcept(cffe.value(), result, inType1, outType);
      } else if (ann instanceof ConstantFieldsSecondExcept) {
        ConstantFieldsSecondExcept cfse = (ConstantFieldsSecondExcept) ann;
        parseConstantFieldsSecondExcept(cfse.value(), result, inType2, outType);
      } else if (ann instanceof ReadFieldsFirst) {
        ReadFieldsFirst rff = (ReadFieldsFirst) ann;
View Full Code Here

TOP

Related Classes of org.apache.flink.api.java.functions.FunctionAnnotation.ConstantFieldsFirstExcept

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.