Package nz.ac.massey.cs.deploymentpuzzlersurvey.answer

Examples of nz.ac.massey.cs.deploymentpuzzlersurvey.answer.Occupation


    int notAnswered = 0;
    for (Occupation k:Occupation.values()) {
      map.put(k,0);
    }
    for (Response r:responses) {
      Occupation k = r.getOccupation();
      if (k==null) {
        notAnswered = notAnswered+1;
      }
      else {
        int v = map.get(k);
View Full Code Here

TOP

Related Classes of nz.ac.massey.cs.deploymentpuzzlersurvey.answer.Occupation

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.