Package eu.stratosphere.api.java.functions.FunctionAnnotation

Examples of eu.stratosphere.api.java.functions.FunctionAnnotation.ConstantFields


      }

      Annotation ann = it.next();

      if (ann instanceof ConstantFields) {
        ConstantFields cf = (ConstantFields) ann;
        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;
View Full Code Here

TOP

Related Classes of eu.stratosphere.api.java.functions.FunctionAnnotation.ConstantFields

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.