Package org.apache.airavata.model.workspace.experiment

Examples of org.apache.airavata.model.workspace.experiment.DataType


      map.put(objectType.getKey(), objectType);
    }
    for (int i = 0; i < parameters.length; i++) {
      DataObjectType input = map.get(parameters[i].getParameterName());
      if (input != null) {
        DataType t = DataType.STRING;
        String type = parameters[i].getParameterType().getType().toString().toUpperCase();
        if (type.equals("STRING")){
          t=DataType.STRING;
        }else if (type.equals("INTEGER")){
          t=DataType.INTEGER;
View Full Code Here


      if (output==null){
        output=new DataObjectType();
        output.setKey(parameters[i].getParameterName());
        output.setValue("");
        String type = parameters[i].getParameterType().getType().toString().toUpperCase();
        DataType t = DataType.STRING;
        if (type.equals("STRING")){
          t=DataType.STRING;
        }else if (type.equals("INTEGER")){
          t=DataType.INTEGER;
        }else if (type.equals("FLOAT")){
View Full Code Here

TOP

Related Classes of org.apache.airavata.model.workspace.experiment.DataType

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.