So I have the following enum and each state represents a string in a database table. In my methods which interact with the database and particularly the status field I'm simply passing a Status reference such as Status.NOTSTARTED or Status.RUNNING and then inside the methods body I use the toString() method to insert a particular state in the db. My question is if I have to reconstruct an object from the database how to work with the status enum. My initial idea is to take the status string from the database and then do something like:
if(string.equals("NOT-YET-STARTED")) {
//pass reference to Status.NOTSTARTED
} else if (string.equals("RUNNING")) {
//pass reference to Status.RUNNING
}
I was wondering if there is a clever way of doing this and avoid manual checking of the string value.
public enum Status {
NOTSTARTED {
@Override
public String toString() {
return "NOT-YET-STARTED";
}
},
RUNNING {
@Override
public String toString() {
return "RUNNING";
}
},
OK {
@Override
public String toString() {
return "OK";
}
},
FAIL {
@Override
public String toString() {
return "FAIL";
}
},
DISPATCHED {
@Override
public String toString() {
return "DISPATCHED";
}
}
}