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

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


        parseConstantFields(cf.value(), result, inType, outType);
      } else if (ann instanceof ConstantFieldsExcept) {
        ConstantFieldsExcept cfe = (ConstantFieldsExcept) ann;
        parseConstantFieldsExcept(cfe.value(), result, inType, outType);
      } else if (ann instanceof ReadFields) {
        ReadFields rf = (ReadFields) ann;
        parseReadFields(rf.value(), result, inType, outType);
      }
    }
    return result;
  }
View Full Code Here

TOP

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

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.