Skip to content

Instantly share code, notes, and snippets.

@victorximenis
Created March 3, 2015 12:22
Show Gist options
  • Save victorximenis/ce0d49294dbc53b1373d to your computer and use it in GitHub Desktop.
Save victorximenis/ce0d49294dbc53b1373d to your computer and use it in GitHub Desktop.
teste
package com.media4all.edu.webapp;
public enum GoalStatusUI {
/*These constants is in according with the GoalResultsEnum.java Enum */
NOT_MET("NOT_MET"),
NOT_MET_PAST("NOT_MET_PAST"),
MET("MET"),
PROJECTED("PROJECTED"),
INDETERMINATE("INDETERMINATE"),
NA("NA"),
MET_PAST("MET_PAST"),
/*These constants is NOT in according with the GoalResultsEnum.java Enum */
PROJECTED_MET("PROJECTED_MET"),
PROJECTED_MEET("PROJECTED_MEET"),
NEAR_TARGET("NEAR_TARGET"),
ABOVE_TARGET("ABOVE_TARGET"),
BELOW_TARGET("BELOW_TARGET");
private String goalStatus;
private GoalStatusUI(String goalStatus) {
this.goalStatus = goalStatus;
}
public String toString() {
return goalStatus;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment